ZForge.Controls.TreeViewAdv.Tree.TreeListAdapter.GetChildren C# (CSharp) Method

GetChildren() public method

public GetChildren ( TreePath treePath ) : System.Collections.IEnumerable
treePath TreePath
return System.Collections.IEnumerable
        public System.Collections.IEnumerable GetChildren(TreePath treePath)
        {
            if (treePath.IsEmpty())
                return _list;
            else
                return null;
        }