CopyBitmap method

Copies a selected area of the document to the clipboard in bitmap format.

Method
short CopyBitmap( )
Description
Copies a selected area of the document to the clipboard in bitmap format.
Return Value
Refer to return codes.
See Also
CopyText and SetSelectionMode methods

C/C + +

 CArsOle * pArsCtrl;
 short rc;
   .
   .
  rc = pArsCtrl->CopyBitmap( );
  if ( rc != ARS_OLE_RC_SUCCESS )
    ERROR;
   .
   .

Visual Basic

Dim rc As Integer

 .
 .

rc = ArsOle.CopyBitmap ()
If rc <> ARS_OLE_RC_SUCCESS Then
   MsgBox "ERROR"
   End
End If

 .
 .