|
Summary
This property is used to check if it is currently possible to clear the clipboard text.
Description
The boolean ClearClipboard property is used to check if it is possible to clear the clipboard text at that specific time. If the clipboard does not contain any text at this point, then the
clipboard cannot be cleared. An application may want to enable or disable a menu item depending on the value of the ClearClipboard 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. To clear the text in the clipboard, call the Clear method (or set the VtAction property to VT_CLEAR_CLIPBOARD.)
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(3).Enabled = (Vt220Client.ClearClipboard = True)
|