'Declaration Public Event Changed As SheetAxisModelEventHandler
'Usage Dim instance As BaseSheetAxisModel Dim handler As SheetAxisModelEventHandler AddHandler instance.Changed, handler
public event SheetAxisModelEventHandler Changed
Event Data
The event handler receives an argument of type SheetAxisModelEventArgs containing data related to this event. The following SheetAxisModelEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Count | Gets the number of items being affected. |
Index | Gets the index where the event happens. |
Type | Gets the event type. |
Example
This example adds a handler for the changed event for the model.
See Also