DynamicRenderer.OnStylusDownProcessed(Object, Boolean) Method

Definition

Occurs on the application UI (user interface) thread when the tablet pen touches the digitizer.

protected:
 override void OnStylusDownProcessed(System::Object ^ callbackData, bool targetVerified);
protected override void OnStylusDownProcessed (object callbackData, bool targetVerified);
override this.OnStylusDownProcessed : obj * bool -> unit
Protected Overrides Sub OnStylusDownProcessed (callbackData As Object, targetVerified As Boolean)

Parameters

callbackData
Object

The object that the application passed to the NotifyWhenProcessed(Object) method.

targetVerified
Boolean

true if the pen's input was correctly routed to the StylusPlugIn; otherwise, false.

Remarks

To subscribe to this method, call NotifyWhenProcessed in the OnStylusDown method.

Notes to Inheritors

When overriding OnStylusDownProcessed(Object, Boolean) in a derived class, be sure to call the base class' OnStylusDownProcessed(Object, Boolean) method.

Applies to