/// <summary> /// Removes a child node from this node. ... /// </summary> public Node removeChild(Node node, bool destroy, object suppressEvents, object suppressNodeUpdate){return null;}
public Tree(Node root) { throw new Exception(); }
public Node setRootNode(Node node) { throw new Exception(); }
public static Element selectNode(string selector, Node root) { throw new Exception(); }
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;}
public double indexOf(Node node) { throw new Exception(); }
public Node insertBefore(Node node, Node refNode) { throw new Exception(); }
public Node appendChild(Node node) { throw new Exception(); }
public bool contains(Node node) { throw new Exception(); }
public static string selectValue(string selector, Node root, string defaultValue) { throw new Exception(); }
public static double selectNumber(string selector, Node root, double defaultValue) { throw new Exception(); }
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;}
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;}
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;}
public Node removeChild(Node node, bool destroy) { throw new Exception(); }
/// <summary> /// Creates new Tree object. ... /// </summary> public Tree(Node root=null){}
public static Array select(string selector, Node root) { throw new Exception(); }