'Declaration
Public Event ResolveCustomControl As EventHandler(Of ResolveCustomControlEventArgs)
'Usage
Dim instance As FpSpread Dim handler As EventHandler(Of ResolveCustomControlEventArgs) AddHandler instance.ResolveCustomControl, handler
public event EventHandler<ResolveCustomControlEventArgs> ResolveCustomControl
Event Data
The event handler receives an argument of type ResolveCustomControlEventArgs containing data related to this event. The following ResolveCustomControlEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Command | Gets the associated command of the control. |
Control | Gets or sets the custom control. |
Spread | Gets the FpSpread control. |
Tag | Gets the associated data of the event. |
Type | The type of custom control. |
See Also