public abstract bool IsLeaf(TreePath treePath);
 public abstract System.Collections.IEnumerable GetChildren(TreePath treePath);
Example #3
0
 public TreePathEventArgs()
 {
     _path = new TreePath();
 }
 /// <summary>
 ///
 /// </summary>
 /// <param name="parent">Path to a parent node</param>
 /// <param name="children">Child nodes</param>
 public TreeModelEventArgs(TreePath parent, object[] children)
     : this(parent, null, children)
 {
 }
Example #5
0
 public TreeNodeAdv FindNode(TreePath path)
 {
     return(FindNode(path, false));
 }
Example #6
0
 public bool IsLeaf(TreePath treePath)
 {
     return(true);
 }