[]
Create Word/RTF string.
public RtfString(string text)
Public Sub New(text As String)
| Type | Name | Description |
|---|---|---|
| string | text | The text string. |
Create Word/RTF string with character formatting.
public RtfString(string text, Font font)
Public Sub New(text As String, font As Font)
| Type | Name | Description |
|---|---|---|
| string | text | The text string. |
| Font | font | Used drawing font for this string. |
Create RTF string with character formatting.
public RtfString(string text, Font font, RtfUnderlineStyle underline)
Public Sub New(text As String, font As Font, underline As RtfUnderlineStyle)
| Type | Name | Description |
|---|---|---|
| string | text | The text string. |
| Font | font | Used drawing font for this string. |
| RtfUnderlineStyle | underline | Used underline for this string if font underline. |