[]
Adds a line break element to the end of the Inlines collection.
public LineBreak AppendLine()
Public Function AppendLine() As LineBreak
Adds a line break element to the end of the Inlines collection.
public LineBreak AppendLine(TextFormat format)
Public Function AppendLine(format As TextFormat) As LineBreak
Type | Name | Description |
---|---|---|
TextFormat | format | The text format. |
Adds a text run with default formatting, followed by a line break, to the end of the Inlines collection.
public LineBreak AppendLine(string text)
Public Function AppendLine(text As String) As LineBreak
Type | Name | Description |
---|---|---|
string | text | The text to append. |
Adds a text run with the specified format, followed by a line break, to the end of the Inlines collection.
public LineBreak AppendLine(string text, TextFormat format)
Public Function AppendLine(text As String, format As TextFormat) As LineBreak
Type | Name | Description |
---|---|---|
string | text | The text to append. |
TextFormat | format | The text format. |