TreeNode.GetNodeCount 메서드
자식 트리 노드의 수를 반환합니다.
네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(system.windows.forms.dll)
구문
‘선언
Public Function GetNodeCount ( _
includeSubTrees As Boolean _
) As Integer
‘사용 방법
Dim instance As TreeNode
Dim includeSubTrees As Boolean
Dim returnValue As Integer
returnValue = instance.GetNodeCount(includeSubTrees)
public int GetNodeCount (
bool includeSubTrees
)
public:
int GetNodeCount (
bool includeSubTrees
)
public int GetNodeCount (
boolean includeSubTrees
)
public function GetNodeCount (
includeSubTrees : boolean
) : int
매개 변수
- includeSubTrees
결과 수에 이 트리 노드에서 시작하는 하위 트리 노드까지 모두 포함되어 있으면 true이고, 그렇지 않으면 false입니다.
반환 값
Nodes 컬렉션에 할당된 자식 트리 노드의 수입니다.
예제
다음 코드 예제에서는 TreeView의 PathSeparator 속성을 설정하고 SelectedNode의 TreeNodeCollection에 포함된 자식 트리 노드 수를 표시합니다. 트리 뷰 컨트롤의 전체 트리 노드에 대한 자식 노드의 비율(%)은 항상 표시됩니다. 이 예제를 실행하려면 Form에 Button와 TreeNode 개체가 여러 개(가능하면 세 수준 이상)인 TreeNodeCollection을 포함하는 TreeView 컨트롤이 있어야 합니다.
Private Sub myButton_Click(ByVal sender As Object, _
ByVal e As System.EventArgs) Handles myButton.Click
' Set the tre view's PathSeparator property.
myTreeView.PathSeparator = "."
' Get the count of the child tree nodes contained in the SelectedNode.
Dim myNodeCount As Integer = myTreeView.SelectedNode.GetNodeCount(True)
Dim myChildPercentage As Decimal = CDec(myNodeCount) / _
CDec(myTreeView.GetNodeCount(True)) * 100
' Display the tree node path and the number of child nodes it and the tree view have.
MessageBox.Show(("The '" + myTreeView.SelectedNode.FullPath + "' node has " _
+ myNodeCount.ToString() + " child nodes." + Microsoft.VisualBasic.ControlChars.Lf _
+ "That is " + String.Format("{0:###.##}", myChildPercentage) _
+ "% of the total tree nodes in the tree view control."))
End Sub
private void myButton_Click(object sender, System.EventArgs e)
{
// Set the tre view's PathSeparator property.
myTreeView.PathSeparator = ".";
// Get the count of the child tree nodes contained in the SelectedNode.
int myNodeCount = myTreeView.SelectedNode.GetNodeCount(true);
decimal myChildPercentage = ((decimal)myNodeCount/
(decimal)myTreeView.GetNodeCount(true)) * 100;
// Display the tree node path and the number of child nodes it and the tree view have.
MessageBox.Show("The '" + myTreeView.SelectedNode.FullPath + "' node has "
+ myNodeCount.ToString() + " child nodes.\nThat is "
+ string.Format("{0:###.##}", myChildPercentage)
+ "% of the total tree nodes in the tree view control.");
}
void myButton_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
// Set the tre view's PathSeparator property.
myTreeView->PathSeparator = ".";
// Get the count of the child tree nodes contained in the SelectedNode.
int myNodeCount = myTreeView->SelectedNode->GetNodeCount( true );
Decimal myChildPercentage = ((Decimal)myNodeCount / (Decimal)myTreeView->GetNodeCount( true )) * 100;
// Display the tree node path and the number of child nodes it and the tree view have.
MessageBox::Show( String::Concat( "The '", myTreeView->SelectedNode->FullPath, "' node has ", myNodeCount, " child nodes.\nThat is ", String::Format( "{0:###.##}", myChildPercentage ), "% of the total tree nodes in the tree view control." ) );
}
private void myButton_Click(Object sender, System.EventArgs e)
{
// Set the tre view's PathSeparator property.
myTreeView.set_PathSeparator(".");
// Get the count of the child tree nodes contained in the SelectedNode.
int myNodeCount = myTreeView.get_SelectedNode().GetNodeCount(true);
System.Decimal myChildPercentage =
Decimal.Multiply(Decimal.Divide(new Decimal(myNodeCount),
new Decimal(myTreeView.GetNodeCount(true))), new Decimal(100));
// Display the tree node path and the number of child nodes it and the
// tree view have.
MessageBox.Show("The '" + myTreeView.get_SelectedNode().get_FullPath()
+ "' node has " + ((Int32)myNodeCount).ToString()
+ " child nodes.\nThat is " + String.Format("{0:###.##}",
myChildPercentage)
+ "% of the total tree nodes in the tree view control.");
} //myButton_Click
플랫폼
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
2.0, 1.1, 1.0에서 지원
.NET Compact Framework
2.0, 1.0에서 지원
참고 항목
참조
TreeNode 클래스
TreeNode 멤버
System.Windows.Forms 네임스페이스
Nodes
TreeNodeCollection