Share via


InkCollector.DoubleClick Event

Occurs when a user double-clicks the InkCollector object.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Syntax

'Declaration
Public Event DoubleClick As InkCollectorDoubleClickEventHandler
'Usage
Dim instance As InkCollector 
Dim handler As InkCollectorDoubleClickEventHandler 

AddHandler instance.DoubleClick, handler
public event InkCollectorDoubleClickEventHandler DoubleClick
public:
 event InkCollectorDoubleClickEventHandler^ DoubleClick {
    void add (InkCollectorDoubleClickEventHandler^ value);
    void remove (InkCollectorDoubleClickEventHandler^ value);
}
JScript does not support events.

Remarks

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

When you create an InkCollectorDoubleClickEventHandler delegate, you identify the method that handles 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.

Platforms

Windows 7, Windows Vista, Windows Server 2008 R2, Windows Server 2008

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

InkCollector Class

InkCollector Members

Microsoft.Ink Namespace

Other Resources

CancelEventArgs

DoubleClick