InkOverlayStrokesDeletedEventHandler Delegate

InkOverlayStrokesDeletedEventHandler Delegate

Represents the method that handles the StrokesDeleted event of an InkOverlay object.

Definition

Visual Basic .NET Public Delegate Sub InkOverlayStrokesDeletedEventHandler( _
ByVal sender As Object, _
ByVal e As EventArgs _
)
C# public delegate void InkOverlayStrokesDeletedEventHandler(
object sender,
EventArgs e
);
Managed C++ public: __gc __delegate void InkOverlayStrokesDeletedEventHandler(
Object *sender,
EventArgs *e
);

Parameters

sender System.Object. [in] Specifies the source InkOverlay of this event.
e System.EventArgs. [in] Specifies the EventArgs Leave Site object that contains the event data.

Delegate Information

Namespace Microsoft.Ink
Assembly Microsoft.Ink (microsoft.ink.dll)
Strong Name Microsoft.Ink, Version=1.7.4009.0, Culture=neutral, PublicKeyToken=a2870d9cc4d021c8

Remarks

The StrokesDeleted event occurs after strokes have been deleted from the Ink property.

The EventArgs Leave Site class contains no event data. It is used by events that do not pass state information to an event handler when an event is raised.

See Also