[]
Adds a Paragraph to the end of the text frame.
public Paragraph AddParagraph()
Public Function AddParagraph() As Paragraph
Type | Description |
---|---|
Paragraph | The added Paragraph. |
Adds a Paragraph to the end of the text frame.
public Paragraph AddParagraph(string text)
Public Function AddParagraph(text As String) As Paragraph
Type | Name | Description |
---|---|---|
string | text | The text of the added Paragraph |
Type | Description |
---|---|
Paragraph | The added Paragraph. |
Adds a Paragraph to the end of the text frame.
public Paragraph AddParagraph(Style style)
Public Function AddParagraph(style As Style) As Paragraph
Type | Name | Description |
---|---|---|
Style | style | The paragraph style. |
Type | Description |
---|---|
Paragraph | The added Paragraph. |
Adds a Paragraph to the end of the text frame.
public Paragraph AddParagraph(string text, Style style)
Public Function AddParagraph(text As String, style As Style) As Paragraph
Type | Name | Description |
---|---|---|
string | text | The text of the added Paragraph |
Style | style | The paragraph style. |
Type | Description |
---|---|
Paragraph | The added Paragraph. |