ClipboardPut
(Engine-Level Function)
Description: | Set the current contents of the system clipboard to a string. This function enables an application to perform text "copy" or "cut" operations. |
Returns: | Nothing |
Usage: | Script Only. |
Function Groups: | Clipboard, String and Buffer |
Related to: | ClipboardGet |
Format: | ClipboardPut(String) |
Parameters: |
String |
Required. Any text expression that will be copied to the system clipboard. |
Comments: |
This function can be used to set the current contents of the clipboard. If the parameter is not a text expression, then the contents of the clipboard are left unchanged. Otherwise, the current contents of the clipboard are overwritten. Do not use a clipboard operation as a subroutine parameter if the application is accessed by thin clients. Within an Anywhere Client session, this function does nothing. |
Example:
... { Having populated DataString with the relevant information, place it into the clipboard for the user } ClipboardPut(DataString); Return(); ] ]