|
Summary
This property is used to check if it is currently possible to capture the screen data to the file specified by the CaptureFile property.
Description
The boolean CaptureScreenFile property is used to check if it is possible to capture the contents of the screen to the file specified by the CaptureFile property at that specific time. An
application may want to enable or disable a menu item depending on the value of the CaptureScreenFile property.
To capture the current screen, call the ScreenCapture method with the CaptureFile parameter set to a valid file name(or set the VtAction property to VT_CAPTURE_SCREEN_FILE.) This will
capture the current screen contents of the VT220 emulation window to the file specified by the CaptureFile property. The CaptureAppend property determines if the contents of this file will be
overwritten or appended with the captured data.
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(6).Enabled = (Vt220Client.CaptureScreenFile = True)
|