In This Topic
Gets or sets what happens to the data on screen when the host clears the display. Applications running on the host often send down escape sequences to clear the screen in whole or in part. When the screen is cleared, the data that was displayed is lost. This property allows you to retain the data that would otherwise be lost. When this property is set to True and such an escape sequence is received, the current display is cleared from view and saved in display memory, and the cursor is positioned at the top of the screen.
Syntax
'Declaration
Property SavePageOnClear As Boolean
'Usage
Dim instance As IScreen
Dim value As Boolean
instance.SavePageOnClear = value
value = instance.SavePageOnClear
bool SavePageOnClear {get; set;}
See Also