/// <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)); }
/// <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)); }
/// <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)); }
/// <summary> /// Adds a new FormattedText with the given Font. /// </summary> public FormattedText AddFormattedText(Font font) { return(Elements.AddFormattedText(font)); }
/// <summary> /// Adds a new FormattedText object with the given format. /// </summary> public FormattedText AddFormattedText(TextFormat textFormat) { return(Elements.AddFormattedText(textFormat)); }
/// <summary> /// Adds a new FormattedText. /// </summary> public FormattedText AddFormattedText() { return(Elements.AddFormattedText()); }