ComponentFactory.Krypton.Toolkit.KryptonTreeView.GetNodeCount C# (CSharp) 메소드

GetNodeCount() 공개 메소드

Retrieves the number of tree nodes, optionally including those in all subtrees, assigned to the tree view control.
public GetNodeCount ( bool includeSubTrees ) : int
includeSubTrees bool true to count the TreeNode items that the subtrees contain; otherwise, false.
리턴 int
        public int GetNodeCount(bool includeSubTrees)
        {
            return _treeView.GetNodeCount(includeSubTrees);
        }
KryptonTreeView