InkCanvasGestureEventArgs.Cancel Property
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.
Gets or sets a Boolean value that indicates whether strokes should be considered a gesture.
public:
property bool Cancel { bool get(); void set(bool value); };
public bool Cancel { get; set; }
member this.Cancel : bool with get, set
Public Property Cancel As Boolean
Property Value
true
if the strokes are ink; false
if the strokes are a gesture.
Remarks
When the Gesture event occurs, the value of the Cancel property depends on the first GestureRecognitionResult in the collection returned by the GetGestureRecognitionResults method. If the value of the ApplicationGesture property is NoGesture, or if it is a gesture whose RecognitionConfidence is a value other than Strong, then Cancel is true
. Otherwise, Cancel is false
. When Cancel is false
, the InkCanvas adds the Strokes to its StrokeCollection. When Cancel is true
, the strokes are not added to the InkCanvas.