Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Appends a string to the content of the TextBuffer object.
Syntax
public void appendText(str string)
Run On
Called
Parameters
- string
Type: str
The string to append.
Examples
{
TextBuffer txtb = new TextBuffer();
txtb.setText("[One]");
txtb.appendText("[Another]");
print txtb.getText(); // Will print "[One][Another]"
}