'Declaration
Public Event Expand As ExpandEventHandler
'Usage
Dim instance As FpSpread Dim handler As ExpandEventHandler AddHandler instance.Expand, handler
public event ExpandEventHandler Expand
Event Data
The event handler receives an argument of type ExpandEventArgs containing data related to this event. The following ExpandEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
Expand | Gets whether the row is going to be expanded. |
Row | Gets the row to expand or collapse. |
View | Gets the view that contains the row to be expanded or collapsed. |
See Also