|
Summary
This property is used to check if it is currently possible to capture the screen contents to a file.
Description
The boolean CaptureScreen property is used to check if it is possible to capture the contents of the screen to a disk file at that specific time. An application may want to enable or disable
a menu item depending on the value of the CaptureScreen property.
To capture the current screen, the ScreenCapture method must be called with the CaptureFile parameter set to a valid file name (or the VtAction property must be set to VT_CAPTURE_SCREEN).
This will capture the current screen contents of the VT220 emulation window to a disk file.
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(4).Enabled = (Vt220Client.CaptureScreen = True)
|