addText
Contents
[
Hide
]addText(String text) function
Adds plain text to the html files, replacing special characters with html entities. Linebreaks and whitespaces aren’t replaced.
Parameters
Name | Type | Description |
---|---|---|
text | String | Text to add. |
addText(char[] text) function
Adds plain text to the html files, replacing special characters with html entities. Linebreaks and whitespaces aren’t replaced.
Parameters
Name | Type | Description |
---|---|---|
text | char[] | Text to add. |
addText(char[] text, int startIndex, int length) function
Adds plain text to the html files, replacing special characters with html entities. Linebreaks and whitespaces aren’t replaced.
Parameters
Name | Type | Description |
---|---|---|
text | char[] | Text to add. |
startIndex | int | Start index of the portion to add. |
length | int | Length of the portion to add. |