Write a value to the users clipboard with this activity
Both a string and image can be selected
begin var ClipBoard := TClipBoard.Create; try ClipBoard.Open; ClipBoard.AsText := StringVariable; finally ClipBoard.Close; ClipBoard.Free; end; end; |
Resulting code when string is selected