CopyText method
- Method
- short CopyText( )
- Description
- Copies a selected area of the document to the clipboard in text format.
- Return Value
- Refer to return codes.
- See Also
- CopyBitmap and SetSelectionMode methods
C/C + +
CArsOle * pArsCtrl;
short rc;
.
.
rc = pArsCtrl->CopyText ( );
if ( rc != ARS_OLE_RC_SUCCESS )
ERROR;
.
.
Visual Basic
Dim rc As Integer
.
.
rc = ArsOle.CopyText ()
If rc <> ARS_OLE_RC_SUCCESS Then
MsgBox "ERROR"
End
End If
.
.