- WriteTextWrites the text into the text control at the current insertion position. 
- UndoIf there is an undo facility and the last operation can be undone, undoes the last operation. 
- SetValueSets the new text control value. 
- SetSelectionSelects the text starting at the first position up to (but not including) the character at the last position. 
- SetMaxLengthThis function sets the maximum number of characters the user can enter into the control. 
- SetMarginsAttempts to set the control margins. 
- SetInsertionPointEndSets the insertion point at the end of the text control. 
- SetInsertionPointSets the insertion point at the given position. 
- SetHintSets a hint shown in an empty unfocused text control. 
- SetEditableMakes the text item editable or read-only, overriding the wxTE_READONLY flag. 
- SelectAllSelects all text in the control. 
- ReplaceReplaces the text starting at the first position up to (but not including) the character at the last position with the given text. 
- RemoveRemoves the text starting at the first given position up to (but not including) the character at the last position. 
- RedoIf there is a redo facility and the last operation can be redone, redoes the last operation. 
- PastePastes text from the clipboard to the text item. 
- IsEditableReturns true if the controls contents may be edited by user (note that it always can be changed by the program). 
- GetValueGets the contents of the control. 
- GetStringSelectionGets the text currently selected in the control. 
- GetSelectionGets the current selection span. 
- GetRangeReturns the string containing the text starting in the positions from and up to to in the control. 
- GetMarginsReturns the margins used by the control. 
- GetLastPositionReturns the zero based index of the last position in the text control, which is equal to the number of characters in the control. 
- GetInsertionPointReturns the insertion point, or cursor, position. 
- GetHintReturns the current hint string. 
- CopyCopies the selected text to the clipboard. 
- ClearClears the text in the control. 
- ChangeValueSets the new text control value. 
- CanUndoReturns true if there is an undo facility available and the last operation can be undone. 
- CanRedoReturns true if there is a redo facility available and the last operation can be redone. 
- CanPasteReturns true if the contents of the clipboard can be pasted into the text control. 
- CanCutReturns true if the selection can be cut to the clipboard. 
- CanCopyReturns true if the selection can be copied to the clipboard. 
- AutoCompleteFileNamesCall this function to enable auto-completion of the text typed in a single-line text control using all valid file system paths. 
- AutoCompleteDirectoriesCall this function to enable auto-completion of the text using the file system directories. 
- AutoCompleteEnable auto-completion using the provided completer object. 
- AppendTextAppends the text to the end of the text control.