property UseLazyDisplay : Boolean
Default: True
Defines whether the terminal immediately displays new incoming data.
The TApxTerminal supports a lazy writing mode. When this mode is active, rather than update the display every time a new character appears from the serial device, the terminal and its associated classes will only display new data after a certain amount of time, or after a certain number of bytes have been received, or both. This gives the terminal a more efficient and smoother feel.
If UseLazyDisplay is False, the terminal will display every incoming character as and when it arrives. If UseLazyDisplay is True, the terminal will display the new data on the screen after LazyByteDelay bytes have been received since it last updated the window, or after LazyTimeDelay milliseconds have elapsed.
The lazy writing mode only applies to data written to the terminal, either from the serial device, or from the keyboard in half duplex mode, or from data explicitly written from calling WriteChar or WriteString. If the terminal component's window is invalidated due to another window covering it and then being moved, or from the application being minimized and then restored, the terminal display is immediately repainted.
See also: LazyByteDelay, LazyTimeDelay