/// <summary>
 /// Splits the text node into two nodes at the specified offset.
 /// </summary>
 /// <param name="Offset">The offset of the text.</param>
 /// <returns>A Text node containing the text after the offset.</returns>
 public Text SplitText(int Offset)
 {
     return(Text.Create(text.splitText((uint)Offset)));
 }