Description
Removes a tab stop in the RichTextEdit control.
Applies to
RichTextEdit controls
Syntax
rtename.RemoveTab (integer tabcurrent)
Argument |
Description |
---|---|
rtename |
The name of the RichTextEdit control from which you want to remove the tab stop |
tabcurrent |
An integer indicating the order of the tab stop that you want to remove. Possible values are from 1 to 14. |
Return value
Integer.
Returns 1 if it succeeds and -1 if an error occurs.
Examples
This example removes the first tab stop:
integer li_rtn li_rtn = rte_1.RemoveTab(1)
See also