Esempio n. 1
0
 /// <summary>
 /// Serializes the specified node into a string.
 /// </summary>
 /// <param name="node">Node instance to serialize.</param>
 public string serialize(SharpKit.TinyMCE.html.Node node)
 {
     return(null);
 }
Esempio n. 2
0
 /// <summary>
 /// Returns a node list of all parents matching the specified selector function or pattern.
 /// If the function then returns true indicating that it has found what it was looking for and that node will be collected.
 /// </summary>
 /// <param name="f">Selection function to execute on each node or CSS pattern.</param>
 /// <param name="r">Optional root element, never go below this point.</param>
 public Array getParents(object f, SharpKit.TinyMCE.html.Node r)
 {
     return(null);
 }
Esempio n. 3
0
 /// <summary>
 /// Returns the previous node that matches selector or function
 /// </summary>
 /// <param name="node">Node to find siblings from.</param>
 public SharpKit.TinyMCE.html.Node getPrev(SharpKit.TinyMCE.html.Node node)
 {
     return(null);
 }
Esempio n. 4
0
 /// <summary>
 /// Return true/false if the specified node has the specified format.
 /// </summary>
 /// <param name="node">Node to check the format on.</param>
 /// <param name="name">Format name to check.</param>
 /// <param name="vars">Optional list of variables to replace before checking it.</param>
 /// <param name="similar">Match format that has similar properties.</param>
 public object matchNode(SharpKit.TinyMCE.html.Node node, string name, object vars, bool similar)
 {
     return(null);
 }
Esempio n. 5
0
 /// <summary>
 /// Returns a node by the specified selector function. This function will
 /// loop through all parent nodes and call the specified function for each node.
 /// If the function then returns true indicating that it has found what it was looking for, the loop execution will then end
 /// and the node it found will be returned.
 /// </summary>
 /// <param name="f">Selection function to execute on each node or CSS pattern.</param>
 /// <param name="r">Optional root element, never go below this point.</param>
 public SharpKit.TinyMCE.html.Node getParent(object f, SharpKit.TinyMCE.html.Node r)
 {
     return(null);
 }
Esempio n. 6
0
 /// <summary>
 /// Matches the current selection or specified node against the specified format name.
 /// </summary>
 /// <param name="name">Name of format to match.</param>
 /// <param name="vars">Optional list of variables to replace before checking it.</param>
 /// <param name="node">Optional node to check.</param>
 public bool match(string name, object vars, SharpKit.TinyMCE.html.Node node)
 {
     return(false);
 }
Esempio n. 7
0
 /// <summary>
 /// Applies the specified format to the current selection or specified node.
 /// </summary>
 /// <param name="name">Name of format to apply.</param>
 /// <param name="vars">Optional list of variables to replace within format before applying it.</param>
 /// <param name="node">Optional node to apply the format to defaults to current selection.</param>
 public object apply(string name, object vars, SharpKit.TinyMCE.html.Node node)
 {
     return(null);
 }
Esempio n. 8
0
 /// <summary>
 /// Inserts a node at a specific position as a child of the current node.
 /// </summary>
 /// <param name="node">Node to insert as a child of the current node.</param>
 /// <param name="ref_node">Reference node to set node before/after.</param>
 /// <param name="before">Optional state to insert the node before the reference node.</param>
 public SharpKit.TinyMCE.html.Node insert(SharpKit.TinyMCE.html.Node node, SharpKit.TinyMCE.html.Node ref_node, bool before)
 {
     return(null);
 }
Esempio n. 9
0
 /// <summary>
 /// Appends a new node as a child of the current node.
 /// </summary>
 /// <param name="node">Node to append as a child of the current one.</param>
 public SharpKit.TinyMCE.html.Node append(SharpKit.TinyMCE.html.Node node)
 {
     return(null);
 }
Esempio n. 10
0
 /// <summary>
 /// Replaces the current node with the specified one.
 /// </summary>
 /// <param name="node">Node to replace the current node with.</param>
 public SharpKit.TinyMCE.html.Node replace(SharpKit.TinyMCE.html.Node node)
 {
     return(null);
 }