Please enable JavaScript to view this site.

Codolex

Navigation: Activities > Clipboard

Clear clipboard

Scroll Prev Top Next More

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

Uses Vcl.Clipbrd.TClipboard

 

The activity has no properties to fill.

 

Clearlipboard

Activity in flow

 

..

var ClipBoard := TClipBoard.Create;

try

   ClipBoard.Open;

   ClipBoard.Clear;

finally

   ClipBoard.Close;

   ClipBoard.Free;

end;

..

Resulting code

 

 

 

© by GDK Software