TextParagraph.AppendLine

AppendLine(string)

Appends text line

public void AppendLine(string line)
ParameterTypeDescription
lineStringThe new line’s text.

See Also


AppendLine(string, float)

Appends text line.

public void AppendLine(string line, float lineSpacing)
ParameterTypeDescription
lineStringThe new line’s text.
lineSpacingSingleAdditional spacing (0.0 is default and corresponds to default text line height). The spacing value is added to default line spacing for the particular line, so you may specify 12.0 to get empty row AFTER a text line drawn with 12pt font.

See Also


AppendLine(string, TextState)

Appends text line with text state parameters.

public void AppendLine(string line, TextState textState)
ParameterTypeDescription
lineStringThe new line’s text.
textStateTextStateText state of the new line.

See Also


AppendLine(string, TextState, float)

Appends text line with text state parameters

public void AppendLine(string line, TextState textState, float lineSpacing)
ParameterTypeDescription
lineStringThe new line’s text.
textStateTextStateText state of the new line.
lineSpacingSingleAdditional spacing (0.0 is default and corresponds to default text line height). The spacing value is added to default line spacing for the particular line, so you may specify 12.0 to get empty row AFTER a text line drawn with 12pt font.

See Also


AppendLine(TextFragment)

Appends text line with text state parameters.

public void AppendLine(TextFragment line)
ParameterTypeDescription
lineTextFragmentThe new line’s text.

See Also


AppendLine(TextFragment, TextState)

Appends text line with text state parameters.

public void AppendLine(TextFragment line, TextState textState)
ParameterTypeDescription
lineTextFragmentThe new line’s text.
textStateTextStateText state of the new line.

See Also


AppendLine(TextFragment, TextState, float)

Appends text line with text state parameters

public void AppendLine(TextFragment line, TextState textState, float lineSpacing)
ParameterTypeDescription
lineTextFragmentThe new line’s text.
textStateTextStateText state of the new line.
lineSpacingSingleAdditional spacing (0.0 is default and corresponds to default text line height). The spacing value is added to default line spacing for the particular line, so you may specify 12.0 to get empty row AFTER a text line drawn with 12pt font.

See Also