'Declaration Public Event SaveOrLoadSheetState As SheetViewStateEventHandler
'Usage Dim instance As FpSpread Dim handler As SheetViewStateEventHandler AddHandler instance.SaveOrLoadSheetState, handler
public event SheetViewStateEventHandler SaveOrLoadSheetState
Event Data
The event handler receives an argument of type SheetViewStateEventArgs containing data related to this event. The following SheetViewStateEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Handled | Gets or sets whether the event has been handled. |
Index | Gets the index of the collection that contains the sheet. |
IsSave | Gets whether the state of the sheet is saved. |
SheetView | Gets the sheet whose state is to be loaded or saved. |
See Also