|
Summary
Specifies if it is currently possible to paste text from clipboard to the VT emulation window.
Description
The boolean PasteClipboard property is used to check if it is possible to paste the text selection contained in the clipboard into the VT220 emulation window at that specific time. The
PasteClipboard property will be False if the user has not copied any text into the clipboard. An application may want to enable or disable a menu item depending on the value of the PasteClipboard
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 the VT_CLEAR_CLIPBOARD action) or paste text from the clipboard using the Paste method (or the
VT_PASTE_CLIPBOARD action). Please refer to the VtAction property for more details.
There is no default value for this property. This property can only be read at run time while a connection is established.
Example
Menu_Edit_Item(2).Enabled = (Vt220Client.PasteClipboard = True)
|