TextCompositionManager.RemovePreviewTextInputStartHandler Method

Definition

Removes a handler for the TextInputStart attached event.

public:
 static void RemovePreviewTextInputStartHandler(System::Windows::DependencyObject ^ element, System::Windows::Input::TextCompositionEventHandler ^ handler);
public static void RemovePreviewTextInputStartHandler (System.Windows.DependencyObject element, System.Windows.Input.TextCompositionEventHandler handler);
static member RemovePreviewTextInputStartHandler : System.Windows.DependencyObject * System.Windows.Input.TextCompositionEventHandler -> unit
Public Shared Sub RemovePreviewTextInputStartHandler (element As DependencyObject, handler As TextCompositionEventHandler)

Parameters

element
DependencyObject

A dependency object to remove the event handler from. The dependency object must be a UIElement or a ContentElement.

handler
TextCompositionEventHandler

A delegate that designates the handler to remove.

Remarks

This method removes a handler for the tunneling version of this event. For information about the bubbling version of this event, see TextInputStart.

Applies to

See also