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