void AppendPlainText( string text )

robot_2Generated
code_blocksInput

Description

The AppendPlainText method allows you to add plain text to the existing content of a TextEdit widget. This method is useful when you want to append additional text without altering the current formatting or content structure.

Usage

To use the AppendPlainText method, call it on an instance of the TextEdit class, passing the text you wish to append as a string parameter. This method does not return a value.

Example

// Create an instance of TextEdit
TextEdit textEdit = new TextEdit();

// Append plain text to the TextEdit
textEdit.AppendPlainText("This is additional text.");

// The TextEdit now contains the appended text.