ZForge.Controls.TreeViewAdv.Tree.TreePath.IsEmpty C# (CSharp) Method

IsEmpty() public method

public IsEmpty ( ) : bool
return bool
        public bool IsEmpty()
        {
            return (_path.Length == 0);
        }

Usage Example

Beispiel #1
0
 public System.Collections.IEnumerable GetChildren(TreePath treePath)
 {
     if (treePath.IsEmpty())
         return _list;
     else
         return null;
 }
All Usage Examples Of ZForge.Controls.TreeViewAdv.Tree.TreePath::IsEmpty