RemoteTextConnection.IsEnabled Property

Definition

Specifies whether text input virtualization is enabled for the Remote Desktop connection serviced by this RemoteTextConnection instance.

public:
 property bool IsEnabled { bool get(); void set(bool value); };
bool IsEnabled();

void IsEnabled(bool value);
public bool IsEnabled { get; set; }
var boolean = remoteTextConnection.isEnabled;
remoteTextConnection.isEnabled = boolean;
Public Property IsEnabled As Boolean

Property Value

Boolean

bool

True if text input virtualization is enabled for the connection serviced by this RemoteTextConnection instance; otherwise, false.

Remarks

If the Remote Desktop client application displays remote and local UI on the same thread, it may be desirable to set this value to false when the local UI has keyboard focus. This would enable built-in input methods provided by Windows to be used to enter text in the local UI. When this property is set to true, the built-in input methods will only work with the remote UI displayed on the foreground thread.

Applies to