Ejemplo n.º 1
0
 internal static void InternalAppendChild(FormatStore.NodeStore nodes, int thisNode, int newChildNode)
 {
     FormatNode.InternalPrependChild(nodes, thisNode, newChildNode);
     nodes.Plane(thisNode)[nodes.Index(thisNode)].LastChild = newChildNode;
 }
Ejemplo n.º 2
0
 public void PrependChild(FormatNode newChildNode)
 {
     FormatNode.InternalPrependChild(this.nodes, this.nodeHandle, newChildNode.Handle);
 }