InkOverlaySelectionChangedEventHandler Delegate
InkOverlaySelectionChangedEventHandler Delegate |
Represents the method that handles the SelectionChanged event of an InkOverlay object.
Definition
Visual Basic .NET Public Delegate Sub InkOverlaySelectionChangedEventHandler( _
ByVal sender As Object, _
ByVal e As EventArgs _
)C# public delegate void InkOverlaySelectionChangedEventHandler(
object sender,
EventArgs e
);Managed C++ public: __gc __delegate void InkOverlaySelectionChangedEventHandler(
Object *sender,
EventArgs *e
);
Parameters
sender System.Object. [in] Specifies the source InkOverlay of this event. e System.EventArgs. [in] Specifies the EventArgs 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 SelectionChanged event occurs when the selection of ink within the control has changed, such as through alterations to the user interface, cut-and-paste procedures, or the Selection property.
The EventArgs 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