Set to Clipboard Activity
The Set to Clipboard activity writes a specified text value to the system clipboard, making it available for pasting into other applications. This activity provides a straightforward method to transfer textual data within or between different software environments.
| Field | Description | Requirement |
|---|---|---|
| Text | The desired value to be written to the clipboard. | Required |
Action Types & Examples
String Value
- Format: String
- Example Result:
"Hello World","${getVar}"
Implementation Examples
Field Setup - Text: "Hello World" - Text: ${myVariableName}
Execution Parameters - textValue: "Example text to copy" - textValue: workflowData.output.result
Technical Notes
The Set to Clipboard activity overwrites any existing content on the system clipboard. Clipboard content is volatile and can be modified by other applications or user actions, so it should not be relied upon for persistent storage or secure data transfer. Ensure that sensitive data is handled appropriately, as clipboard content can be accessed by other applications.