'Declaration
Public Event ResolveAction As EventHandler(Of ResolveActionEventArgs)
'Usage
Dim instance As FpSpread Dim handler As EventHandler(Of ResolveActionEventArgs) AddHandler instance.ResolveAction, handler
public event EventHandler<ResolveActionEventArgs> ResolveAction
Event Data
The event handler receives an argument of type ResolveActionEventArgs containing data related to this event. The following ResolveActionEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Action | Gets or set the action. |
Type | Gets the type of action. |
Remarks
Not all actions are handled by this event.
See Also