This method is called when the specified preview action must be executed.

Namespace:  C1.C1PrintDocument
Assembly:  C1.C1PrintDocument.Classic.2 (in C1.C1PrintDocument.Classic.2.dll)

Syntax

C#
void OnUserAction(
	InputInfoBase inputInfo,
	UserActionEnum userAction,
	InputAction inputAction,
	out bool handled
)
Visual Basic (Declaration)
Sub OnUserAction ( _
	inputInfo As InputInfoBase, _
	userAction As UserActionEnum, _
	inputAction As InputAction, _
	<OutAttribute> ByRef handled As Boolean _
)

Parameters

inputInfo
Type: C1.C1PrintDocument..::.InputInfoBase
the InputInfoBase object corresponding to the input control which causes an event.
userAction
Type: C1.C1PrintDocument..::.UserActionEnum
the user action which occurred (mouse click, control enter, etc.).
inputAction
Type: C1.C1PrintDocument..::.InputAction
the InputAction that will be executed (can be null if no actions are defined for the specified user action).
handled
Type: System..::.Boolean%
output parameter; if set to true when the method returns, any further handling is cancelled.

See Also