|
Summary
Specifies whether captured data should be appended to or overwritten in the file specified by the CaptureFile property.
Description
The boolean CaptureAppend property determines whether to overwrite or append incoming data to CaptureFile. An application may want to overwrite or append data to CaptureFile depending on user
input.
If this property is set to True, then the data captured will be appended to the file (specified by the CaptureFile property). Otherwise, the contents of the file (specified by the CaptureFile
property) will be overwritten.
This property is only used when the VtAction property is set to VT_CAPTURE_DATA_FILE or VT_CAPTURE_SCREEN_FILE.
The default value for this property is False. This property can be read or written to at any time.
Example
Vt220Client.CaptureAppend = True
|