Method procedure SLScope.TSLDataDisplay.CopyToClipboard()
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TSLDataDisplay
Contents |
Syntax
Delphi:
procedure CopyToClipboard();
C++ Builder:
void __fastcall CopyToClipboard();
Visual C++ (MFC):
void CopyToClipboard();
Summary
Copies the content of the display to the Clipboard.
Description
Call this method to copy the content of the display to the Clipboard.
Delphi example:
SLScope1.CopyToClipboard;
C++ Builder example:
SLScope1->CopyToClipboard();
Visual C++(MFC/Win32) example:
SLScope1.CopyToClipboard();
Visual C++/CLI example:
scope1->CopyToClipboard();
C# example:
scope1.CopyToClipboard();
VB example:
Scope1.CopyToClipboard()