Share via


TextInputProvider.InputDelegationModeChanged Event

Definition

Important

The Windows.UI.Input.Preview.Text APIs are part of a Limited Access Feature (see LimitedAccessFeatures class). Use the LAF Access Token Request Form to request an unlock token.

Note

To use this API in a Windows app being published to the Windows Store, you must declare the Text Input Method custom capability (Microsoft.appCategory.textInputMethod_8wekyb3d8bbwe) and request approval during the app submission process. See Custom capabilities for more info.

The Text Input Method capability enables several advanced features related to text input, including events for input focus (determining when to enter and exit) and the ability to read and write text within the current input focus's edit control.

// Register
event_token InputDelegationModeChanged(TypedEventHandler<TextInputProvider, InputDelegationModeChangedEventArgs const&> const& handler) const;

// Revoke with event_token
void InputDelegationModeChanged(event_token const* cookie) const;

// Revoke with event_revoker
TextInputProvider::InputDelegationModeChanged_revoker InputDelegationModeChanged(auto_revoke_t, TypedEventHandler<TextInputProvider, InputDelegationModeChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<TextInputProvider,InputDelegationModeChangedEventArgs> InputDelegationModeChanged;
function onInputDelegationModeChanged(eventArgs) { /* Your code */ }
textInputProvider.addEventListener("inputdelegationmodechanged", onInputDelegationModeChanged);
textInputProvider.removeEventListener("inputdelegationmodechanged", onInputDelegationModeChanged);
- or -
textInputProvider.oninputdelegationmodechanged = onInputDelegationModeChanged;
Public Custom Event InputDelegationModeChanged As TypedEventHandler(Of TextInputProvider, InputDelegationModeChangedEventArgs) 

Event Type

Applies to