Clipboard Variable

The system clipboard object.

This variable was added in ATEasy v4.0.

Type

Public Const AClipboard

Comments

The Clipboard object is created by ATEasy and provides access to the system clipboard.

Example

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

See Also

AClipboard