[]
Add paragraph into this document in next position.
public RtfParagraph AddParagraph(string text)
Public Function AddParagraph(text As String) As RtfParagraph
| Type | Name | Description |
|---|---|---|
| string | text | The text string of the paragraph. |
| Type | Description |
|---|---|
| RtfParagraph | The Word/RTF paragraph object. |
Add paragraph into this document in next position.
public RtfParagraph AddParagraph(string text, Font font)
Public Function AddParagraph(text As String, font As Font) As RtfParagraph
| Type | Name | Description |
|---|---|---|
| string | text | The text string of the paragraph. |
| Font | font | The drawing font. |
| Type | Description |
|---|---|
| RtfParagraph | The Word/RTF paragraph object. |
Add paragraph into this document in next position.
public RtfParagraph AddParagraph(string text, Font font, Color clr)
Public Function AddParagraph(text As String, font As Font, clr As Color) As RtfParagraph
| Type | Name | Description |
|---|---|---|
| string | text | The text string of the paragraph. |
| Font | font | The drawing font. |
| Color | clr | The drawing color. |
| Type | Description |
|---|---|
| RtfParagraph | The Word/RTF paragraph object. |
Add paragraph into this document in next position.
public RtfParagraph AddParagraph(string text, Font font, Color clr, RtfHorizontalAlignment align)
Public Function AddParagraph(text As String, font As Font, clr As Color, align As RtfHorizontalAlignment) As RtfParagraph
| Type | Name | Description |
|---|---|---|
| string | text | The text string of the paragraph. |
| Font | font | The drawing font. |
| Color | clr | The drawing color. |
| RtfHorizontalAlignment | align | The paragraph alignment. |
| Type | Description |
|---|---|
| RtfParagraph | The Word/RTF paragraph object. |