/// <summary>
 /// Removes a child node from this node. ...
 /// </summary>
 public Node removeChild(Node node, bool destroy, object suppressEvents, object suppressNodeUpdate){return null;}
Exemple #2
0
 public Tree(Node root) { throw new Exception(); }
Exemple #3
0
 public Node setRootNode(Node node) { throw new Exception(); }
Exemple #4
0
 public static Element selectNode(string selector, Node root) { throw new Exception(); }
Exemple #5
0
 public Node replaceChild(Node newChild, Node oldChild) { throw new Exception(); }
 /// <summary>
 /// Returns the index of a child node ...
 /// </summary>
 public JsNumber indexOf(Node node){return null;}
 /// <summary>
 /// Returns true if the passed node is an ancestor (at any point) of this node. ...
 /// </summary>
 public bool isAncestor(Node node){return false;}
Exemple #8
0
 public double indexOf(Node node) { throw new Exception(); }
Exemple #9
0
 public Node insertBefore(Node node, Node refNode) { throw new Exception(); }
Exemple #10
0
 public Node appendChild(Node node) { throw new Exception(); }
Exemple #11
0
 public bool contains(Node node) { throw new Exception(); }
Exemple #12
0
 public static string selectValue(string selector, Node root, string defaultValue) { throw new Exception(); }
Exemple #13
0
 public static double selectNumber(string selector, Node root, double defaultValue) { throw new Exception(); }
Exemple #14
0
 public static double selectNumber(string selector, Node root) { throw new Exception(); }
 /// <summary>
 /// Replaces one child node in this node with another. ...
 /// </summary>
 public Node replaceChild(Node newChild, Node oldChild, object suppressEvents){return null;}
Exemple #16
0
 public bool isAncestor(Node node) { throw new Exception(); }
 /// <summary>
 /// Returns true if this node is an ancestor (at any point) of the passed node. ...
 /// </summary>
 public bool contains(Node node){return false;}
Exemple #18
0
 public Node removeChild(Node node) { throw new Exception(); }
 /// <summary>
 /// Inserts the first node before the second node in this nodes childNodes collection. ...
 /// </summary>
 public Node insertBefore(Node node, Node refNode, object suppressEvents){return null;}
Exemple #20
0
 public Node removeChild(Node node, bool destroy) { throw new Exception(); }
Exemple #21
0
 /// <summary>
 /// Creates new Tree object. ...
 /// </summary>
 public Tree(Node root=null){}
Exemple #22
0
 public static Array select(string selector, Node root) { throw new Exception(); }