#include "ltwrappr.h"
L_INT LAutomation::Paste(dwFlags = 0)
L_UINT32 dwFlags; |
reserved |
Copies the valid automation data on the clipboard to the active automation container.
Parameter |
Description |
dwFlags |
Reserved for future use. Must be 0. |
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
Call LAutomation::ClipboardDataReady to determine whether valid automation data exists on the clipboard.
To copy automation data from the active automation container to the clipboard use LAutomation::Copy. Automation data can be cut from the active automation container and placed on the clipboard using LAutomation::Cut.
Required DLLs and Libraries
LTAUT For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application |
Functions: |
LAutomation::ClipboardDataReady , LAutomation::Cut, LAutomation::Copy |
Topics: |
This example shows how to paste the current clipboard contents (if any) to the current active automation.
L_INT LAutomation_PasteExample(LAutomation &lauto)
{
L_INT nRet;
nRet = lauto.IsValid();
if ( SUCCESS == nRet ) /* check the validity of the automation handle */
{
L_BOOL fReady ;
/* check if there is a valid automation mode data on the clipboard */
fReady = lauto.ClipboardDataReady () ;
if ( fReady )
{
/* paste the data to the current active container */
nRet = lauto.Paste () ;
if(nRet != SUCCESS)
return nRet;
}
}
else
{
return nRet ;
}
return SUCCESS ;
}