In This Topic

CustomAction Event (DocuViewareEventsHandler)

In This Topic
Specifies the event handler for custom actions.
Syntax
'Declaration
 
Public Event CustomAction As EventHandler(Of CustomActionEventArgs)
public event EventHandler<CustomActionEventArgs> CustomAction
Event Data

The event handler receives an argument of type CustomActionEventArgs containing data related to this event. The following CustomActionEventArgs properties provide information specific to this event.

PropertyDescription
Specifies custom action name.  
Specifies custom action arguments.  
Specifies optional arguments provided by the controller. It may be used to keep a reference to an HTTP context.  
Specifies the Docuvieware object that belong to the event.  
Specifies custom action message.  
Specifies the result object that will be transfered to the client.  
See Also