[]
Initializes a new instance of the Viewer.ActionEventArgs class. This default constructor initializes the instance without specifying an action or page number.
public ActionEventArgs()
Initializes a new instance of the Viewer.ActionEventArgs class with the specified action. This constructor is used when an action is defined without a specific page navigation.
public ActionEventArgs(IAction action)
Type | Name | Description |
---|---|---|
IAction | action | The action associated with the event. |
Initializes a new instance of the Viewer.ActionEventArgs class with the specified action and page number. This constructor is used when the action involves navigating to a specific page.
public ActionEventArgs(IAction action, int pageNumber)
Type | Name | Description |
---|---|---|
IAction | action | The action associated with the event. |
int | pageNumber | The page number associated with the event. |