TextCompositionEventHandler Delegate

Definition

Represents the method that will handle the routed events related to the TextComposition and TextCompositionManager classes, for example TextInput.

public delegate void TextCompositionEventHandler(System::Object ^ sender, TextCompositionEventArgs ^ e);
public delegate void TextCompositionEventHandler(object sender, TextCompositionEventArgs e);
type TextCompositionEventHandler = delegate of obj * TextCompositionEventArgs -> unit
Public Delegate Sub TextCompositionEventHandler(sender As Object, e As TextCompositionEventArgs)

Parameters

sender
Object

The object where the event handler is attached.

e
TextCompositionEventArgs

The event data.

Remarks

This delegate is used with the following attached events:

This delegate is also used with the following routed events on base elements. These routed events forward some of the previously listed attached events to make them more accessible to the general element model in WPF.

The attached events and the base element routed events share their event data, and the bubbling and tunneling versions of the routed events also share event data. This can affect the handled characteristics of the event as it travels the event route. For details, see Input Overview.

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to

See also