/// <summary>
 /// Adds a single character to the hyperlink.
 /// </summary>
 public Text AddChar(char ch)
 {
     return(Elements.AddChar(ch));
 }
 /// <summary>
 /// Adds a single character repeated the specified number of times to the hyperlink.
 /// </summary>
 public Text AddChar(char ch, int count)
 {
     return(Elements.AddChar(ch, count));
 }