Reflection
LocalEcho Property


Gets or sets whether the local computer "echoes" typed characters directly to the screen.
Syntax
'Declaration
 
Property LocalEcho As Boolean
'Usage
 
Dim instance As ITerminal
Dim value As Boolean
 
instance.LocalEcho = value
 
value = instance.LocalEcho
bool LocalEcho {get; set;}

Property Value

The default value is false.
Remarks
If a host connection exists and both the Online property and LocalEcho are set to true, typed characters appear on the screen twice; once when echoed from the local computer and a second time when echoed back from the host.

Set LocalEcho to true only for communication with a host system that does not echo typed characters.

When Reflection is in local or block mode, characters are echoed locally even if LocalEcho is set to false.

See Also