TreeNode.ExpandAll 메서드
자식 트리 노드를 모두 확장합니다.
네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(system.windows.forms.dll)
구문
‘선언
Public Sub ExpandAll
‘사용 방법
Dim instance As TreeNode
instance.ExpandAll
public void ExpandAll ()
public:
void ExpandAll ()
public void ExpandAll ()
public function ExpandAll ()
설명
ExpandAll 메서드는 Nodes 컬렉션에 할당된 자식 트리 노드를 모두 확장합니다.
참고
TreeNode의 상태는 지속됩니다. 예를 들어, 다음 수준의 자식 노드가 이전에 축소되지 않았으면 Expand 메서드가 호출될 때 자식 노드는 이전의 확장된 상태로 표시됩니다.
예제
다음 코드 예제에서는 CheckBox가 선택될 때 TreeView 컨트롤의 모든 트리 노드를 확장하고 CheckBox 선택이 취소될 때 FirstNode를 축소합니다. 이 예제를 실행하려면 Form에 CheckBox와 TreeNode 개체가 여러 개(가능하면 세 수준 이상)인 TreeNodeCollection을 포함하는 TreeView 컨트롤이 있어야 합니다.
Private Sub myCheckBox_CheckedChanged(ByVal sender As Object, _
ByVal e As System.EventArgs) Handles myCheckBox.CheckedChanged
' If the check box is checked, expand all the tree nodes.
If myCheckBox.Checked = True Then
myTreeView.ExpandAll()
Else
' If the check box is not cheked, collapse the first tree node.
myTreeView.Nodes(0).FirstNode.Collapse()
MessageBox.Show("The first and last node of CutomerList root node is collapsed")
End If
End Sub
private void myCheckBox_CheckedChanged(object sender, System.EventArgs e)
{
// If the check box is checked, expand all the tree nodes.
if (myCheckBox.Checked == true)
{
myTreeView.ExpandAll();
}
else
{
// If the check box is not cheked, collapse the first tree node.
myTreeView.Nodes[0].FirstNode.Collapse();
MessageBox.Show("The first and last node of CutomerList root node is collapsed");
}
}
void myCheckBox_CheckedChanged( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
// If the check box is checked, expand all the tree nodes.
if ( myCheckBox->Checked == true )
{
myTreeView->ExpandAll();
}
else
{
// If the check box is not cheked, collapse the first tree node.
myTreeView->Nodes[ 0 ]->FirstNode->Collapse();
MessageBox::Show( "The first and last node of CutomerList root node is collapsed" );
}
}
private void myCheckBox_CheckedChanged(Object sender, System.EventArgs e)
{
// If the check box is checked, expand all the tree nodes.
if (myCheckBox.get_Checked() == true) {
myTreeView.ExpandAll();
}
else {
// If the check box is not cheked, collapse the first tree node.
myTreeView.get_Nodes().get_Item(0).get_FirstNode().Collapse();
MessageBox.Show("The first and last node of CutomerList root "
+ "node is collapsed");
}
} //myCheckBox_CheckedChanged
플랫폼
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 네임스페이스
Expand
Collapse
IsExpanded
Toggle