
Performs Text Control clipboard actions.
TXTextControl.Clip Action
| Parameter | Description | |
| 1 | Cuts out the selected text and copies it to the clipboard. | |
| 2 | Copies the selected text to the clipboard. | |
| 3 | Pastes text from the clipboard. | |
| 4 | Clears the selection. |
This method has no return value.
| Action | Integer |
This Basic example copies the selected text from a Text Control named "TXTextControl1" to the clipboard when the user selects the "Edit/Copy" menu item:
Sub mnuEdit_Copy_Click () TXTextControl1.Clip 2 End Sub