Ejemplo n.º 1
0
 /// <summary>
 /// Adds a new FormattedText object with the given text and style.
 /// </summary>
 public FormattedText AddFormattedText(string text, string style)
 {
     return(Elements.AddFormattedText(text, style));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Adds a new FormattedText object with the given text and font.
 /// </summary>
 public FormattedText AddFormattedText(string text, Font font)
 {
     return(Elements.AddFormattedText(text, font));
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Adds a new FormattedText object with the given text and format.
 /// </summary>
 public FormattedText AddFormattedText(string text, TextFormat textFormat)
 {
     return(Elements.AddFormattedText(text, textFormat));
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Adds a new FormattedText with the given Font.
 /// </summary>
 public FormattedText AddFormattedText(Font font)
 {
     return(Elements.AddFormattedText(font));
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Adds a new FormattedText object with the given format.
 /// </summary>
 public FormattedText AddFormattedText(TextFormat textFormat)
 {
     return(Elements.AddFormattedText(textFormat));
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Adds a new FormattedText.
 /// </summary>
 public FormattedText AddFormattedText()
 {
     return(Elements.AddFormattedText());
 }