L_AutCut

#include "ltaut.h"

L_LTAUT_API L_INT L_AutCut(pAutomation, dwFlags )

Cuts the selected objects in the active automation container to the Microsoft Windows clipboard.

Parameters

pAUTOMATIONHANDLE pAutomation

Pointer to an automation handle.

L_UINT32 dwFlags

Reserved for future use. Must be 0.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

To paste automation data on the clipboard to the active automation container, call L_AutPaste.

To copy automation data from the active automation container, to the Windows clipboard, use L_AutCopy.

To determine whether there is valid automation data present on the clipboard, call L_AutClipboardDataReady.

Required DLLs and Libraries

See Also

Functions

Topics

Example

This example shows how to do a cut operation to the current automation selection.

L_INT AutCutExample( pAUTOMATIONHANDLE pAutomation ) 
{ 
   L_INT nRet; 
   nRet = L_AutIsValid ( pAutomation ); 
   if ( SUCCESS == nRet ) /* check the validity of the automation handle */ 
   { 
      /* cut the current selection to the clipboard */ 
      L_AutCut ( pAutomation, 0 ) ; 
 
      return SUCCESS ; 
   } 
   else 
   { 
      return nRet ; 
   } 
} 

Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Container and Automation C API Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.