DynamicRenderer.OnStylusUpProcessed(Object, Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs on the application UI (user interface) thread when the user lifts the tablet pen from the digitizer.
protected:
override void OnStylusUpProcessed(System::Object ^ callbackData, bool targetVerified);
protected override void OnStylusUpProcessed (object callbackData, bool targetVerified);
override this.OnStylusUpProcessed : obj * bool -> unit
Protected Overrides Sub OnStylusUpProcessed (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 OnStylusUp method
Notes to Inheritors
When overriding OnStylusUpProcessed(Object, Boolean) in a derived class, be sure to call the base class' OnStylusUpProcessed(Object, Boolean) method.