"append"
Adds a text to a textEdit document.
Synopsis
void append(string text);
Parameters
Parameter | Description |
---|---|
text | The text to be added |
Description
Adds a text to a textEdit document.
Example
Adds the text "This is a text" to a textEdit document.
main()
{
TEXT_EDIT1.append("This is a text");
}
Assignment
textEdit