InkStrokesErasedEventArgs InkStrokesErasedEventArgs InkStrokesErasedEventArgs InkStrokesErasedEventArgs Class

Definition

Contains event data for the StrokesErased event of the InkPresenter associated with an InkCanvas control.

By default, ink stroke data and rendering is managed entirely by the InkCanvas control. However, this behavior can be overridden by calling the ActivateCustomDrying method prior to loading the InkCanvas.

public : sealed class InkStrokesErasedEventArgs : IInkStrokesErasedEventArgspublic sealed class InkStrokesErasedEventArgs : IInkStrokesErasedEventArgsPublic NotInheritable Class InkStrokesErasedEventArgs Implements IInkStrokesErasedEventArgs// This API is not available in Javascript.
Attributes
Windows 10 requirements
Device family
Windows 10 (introduced v10.0.10240.0 - for Xbox, see UWP features that aren't yet supported on Xbox)
API contract
Windows.Foundation.UniversalApiContract (introduced v1)

Remarks

The StrokesErased event is not raised in custom dry mode (ActivateCustomDrying ).

Properties

Strokes Strokes Strokes Strokes

Gets the collection of ink strokes associated with the StrokesErased event.

public : IVectorView<InkStroke> Strokes { get; }public IReadOnlyList<InkStroke> Strokes { get; }Public ReadOnly Property Strokes As IReadOnlyList<InkStroke>// This API is not available in Javascript.
Value
IVectorView<InkStroke> IReadOnlyList<InkStroke> IReadOnlyList<InkStroke> IReadOnlyList<InkStroke>

The erased ink strokes as a collection of InkStroke objects.

See Also

See Also