InkPicture.Click event

Occurs when a user clicks the InkPicture control.

Syntax


void Click();

Parameters

This event has no parameters.

Return value

This event does not return a value.

Remarks

Clicking a control generates MouseDown and MouseUp events in addition to the Click event.

Note  To distinguish between the left, right, and middle mouse buttons, use the MouseDown and MouseUp events.
 

If there is code in the Click event, the DblClick event will never trigger, because the Click event is the first event to trigger between the two. As a result, the mouse click is intercepted by the Click event, so the DblClick event doesn't occur.

This event method is defined in the _IInkPictureEvents interface. The _IInkPictureEvents interface implements the IDispatch interface with an identifier of DISPID_IPEClick.

Requirements

Minimum supported client

Windows XP Tablet PC Edition [desktop apps only]

Minimum supported server

None supported

Header

Msinkaut.h (also requires Msinkaut_i.c)

Library

InkObj.dll

See also

InkPicture

 

 

Show: