Use the activity to clear the clipboard. this can be helpful if multiple values are being copied but you want to avoid flooding the clipboard of the user
The activity has no properties to fill.
Activity in flow
.. var ClipBoard := TClipBoard.Create; try ClipBoard.Open; ClipBoard.Clear; finally ClipBoard.Close; ClipBoard.Free; end; .. |
Resulting code