TreeNode.ExpandAll メソッド

すべての子ツリー ノードを展開します。

Public Sub ExpandAll()
[C#]
public void ExpandAll();
[C++]
public: void ExpandAll();
[JScript]
public function ExpandAll();

解説

ExpandAll メソッドは、 Nodes コレクションに割り当てられているすべての子ツリー ノードを展開します。

メモ    TreeNode の状態は永続化されています。たとえば、次のレベルの子ノードの表示が折りたたまれていなかった場合、 Expand メソッドを呼び出すと、それらの子ノードは前回展開されたときの状態で表示されます。

使用例

[Visual Basic, C#, C++] CheckBox がオンになったとき TreeView コントロールのツリー ノードをすべて展開し、 CheckBox がオフになったときに FirstNode を折りたたむ例を次に示します。この例は、 CheckBox と、複数の TreeNode オブジェクト (3 レベル以上を推奨) を格納している TreeNodeCollection が設定された TreeView コントロールが Form に配置されていることを前提にしています。

 
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

[C#] 
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");
   }
}

[C++] 
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->Item[0]->FirstNode->Collapse();
            MessageBox::Show(S"The first and last  node of CutomerList root node is collapsed");
        }
    }

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET

参照

TreeNode クラス | TreeNode メンバ | System.Windows.Forms 名前空間 | Expand | Collapse | IsExpanded | Toggle