Represents a method that handles the UserAction event.

Namespace:  C1.Win.C1Preview
Assembly:  C1.Win.C1Report.2 (in C1.Win.C1Report.2.dll)

Syntax

C#
public delegate void UserActionEventHandler(
	Object sender,
	UserActionEventArgs e
)
Visual Basic
Public Delegate Sub UserActionEventHandler ( _
	sender As Object, _
	e As UserActionEventArgs _
)

Parameters

sender
Type: System..::..Object
The source of the event (usually an instance of the C1PreviewPane class).
e
Type: C1.Win.C1Preview..::..UserActionEventArgs
A UserActionEventArgs that contains the event data.

See Also