[]
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)
Public Sub AppendRtfText(Text As String, Color As 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)
Public Sub AppendRtfText(Text As String, Font As 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)
Public Sub AppendRtfText(Text As String, Color As Color, Font As 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)
Public Sub AppendRtfText(Text As String, Color As Color, Font As Font, Align As HorizontalAlignment)
| 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. |