|
Summary
Specifies whether it is possible to copy text to the clipboard.
Description
The boolean CopyClipboard property is used to check if it is possible to copy text to the clipboard at that specific time. The CopyClipboard property will be False if the user has not
selected any text in the VT220 emulation window. An application may want to enable or disable a menu item depending on the value of the CopyClipboard property.
The clipboard is used to temporarily store text (among other data formats) that is copied to it from Windows applications. The clipboard will retain the text until another text selection is copied to
it. An application can clear the text contained in the clipboard using the Clear method (or setting VT_CLEAR_CLIPBOARD action) or copy text to the clipboard using the Copy method (or setting the
VT_COPY_CLIPBOARD action).
There is no default value for this property. This property can only be read at run time after the emulation has been initialized and cannot be written to at any time.
Example
Menu_Edit_Item(1).Enabled = (Vt220Client.CopyClipboard = True)
|