InkOverlay.DoubleClick Event

InkOverlay.DoubleClick Event

Occurs when the InkOverlay object is double-clicked.

Definition

Visual Basic .NET Public Event DoubleClick As InkCollectorDoubleClickEventHandler
C# public event InkCollectorDoubleClickEventHandler DoubleClick;
Managed C++ public: __event InkCollectorDoubleClickEventHandler DoubleClick;

Remarks

The event handler receives an argument of type CancelEventArgs Leave Site that contains data about this event.

When you create an InkCollectorDoubleClickEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For performance reasons, the default event interest is off but is turned on automatically if you add an event handler.

See Also