The system clipboard object.
This variable was added in ATEasy v4.0.
Public Const AClipboard
The Clipboard object is created by ATEasy and provides access to the system clipboard.
The following example shows how to paste text from the clipboard to the text box control:
if Clipboard.GetFormat(acfText)
sText=Clipboard.GetText()
edtText.SelText=sText
endif