Click or drag to resize

WorkflowViewOnObjectClicked Event

This event is fired whenever an object is clicked in the viewer: x and y contain mouse pointer coordinates.

Namespace:  Kofax.OmniPageCSDK.ToolBoxes
Assembly:  Kofax.OmniPageCSDK.ToolBoxes (in Kofax.OmniPageCSDK.ToolBoxes.dll) Version: 1.0.0.0
Syntax
public event WorkflowViewObjectClickedHandler OnObjectClicked

Value

Type: Kofax.OmniPageCSDK.ToolBoxesWorkflowViewObjectClickedHandler
Remarks

ClickEvent shows the current action. It can be one of the following values:

Value Control default implementation
WM_LBUTTONDOWN Selects object under mouse pointer
WM_LBUTTONUP None
WM_LBUTTONDBLCLK Opens file associated with object
WM_LBUTTONDBLCLK Selects object under mouse pointer
WM_RBUTTONUP Displays context menu
WM_RBUTTONUP Selects object under mouse pointer

ItemID identifies the clicked object. You can pass this value to one of the item manipulating functions in your event handler. If you want to block the default implementation which is normally executed after the event handler has exited, return False.

See Also