[]
Appends the specified text to the Rft string using the specified color and the object default font. Transparent colors cannot be used by an Rtf rendering.
public void AppendRtfText(string Text, Color Color)
Type | Name | Description |
---|---|---|
string | Text | Text string to be appended to existing Rtf. |
Color | Color | ForeColor of the appended text. |
Appends the specified text to the Rft string using the object ForeColor and the specified font. Transparent colors cannot be used for an Rtf rendering.
public void AppendRtfText(string Text, Font Font)
Type | Name | Description |
---|---|---|
string | Text | Text string to be appended to existing Rtf. |
Font | Font | Font of the appended text. |
Appends the specified text to the Rtf string using the specified color and font. Transparent colors cannot be used for an Rtf rendering.
public void AppendRtfText(string Text, Color Color, Font Font)
Type | Name | Description |
---|---|---|
string | Text | Text string to be appended to existing Rtf. |
Color | Color | ForeColor of the appended text. |
Font | Font | Font of the appended text. |
Appends the specified text to the Rtf string using the specified color, font and alignment. Transparent colors cannot be used for an Rtf rendering.
public void AppendRtfText(string Text, Color Color, Font Font, HorizontalAlignment Align)
Type | Name | Description |
---|---|---|
string | Text | Text string to be appended to existing Rtf. |
Color | Color | ForeColor of the appended text. |
Font | Font | Font of the appended text. |
HorizontalAlignment | Align | Alignment of the appended text. |