AddText

AddText(string)

Adds plain text to the html files, replacing special characters with html entities. Linebreaks and whitespaces aren’t replaced.

public void AddText(string text)
ParameterTypeDescription
textStringText to add.

See Also


AddText(char[])

Adds plain text to the html files, replacing special characters with html entities. Linebreaks and whitespaces aren’t replaced.

public void AddText(char[] text)
ParameterTypeDescription
textChar[]Text to add.

See Also


AddText(char[], int, int)

Adds plain text to the html files, replacing special characters with html entities. Linebreaks and whitespaces aren’t replaced.

public void AddText(char[] text, int startIndex, int length)
ParameterTypeDescription
textChar[]Text to add.
startIndexInt32Start index of the portion to add.
lengthInt32Length of the portion to add.

See Also