LAutomation::Copy

Summary

Copies the selected objects in the active automation container to the Windows clipboard.

Syntax

#include "ltwrappr.h"

L_INT LAutomation::Copy (dwFlags = 0)

Parameters

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 valid automation data from the clipboard to the active automation container, use LAutomation::Paste.

Automation data can be cut from the active automation container and placed on the clipboard using LAutomation::Cut.

Required DLLs and Libraries

See Also

Functions

Topics

Example

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

L_INT LAutomation_CopyExample(LAutomation &lauto) 
{ 
   L_INT nRet; 
 
   nRet = lauto.IsValid(); 
 
   if ( SUCCESS == nRet ) /* check the validity of the automation handle */ 
 
   { 
 
      /* copy the current selection to the clipboard */ 
 
      nRet = lauto.Copy() ; 
      if(nRet != SUCCESS) 
         return nRet; 
 
   } 
 
   else 
 
   { 
 
      return nRet ; 
 
   } 
 
   return SUCCESS ; 
 
} 

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

LEADTOOLS Container and Automation C++ Class Library Help

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