'Declaration
Public Event Changed As SheetViewEventHandler
'Usage
Dim instance As SheetView Dim handler As SheetViewEventHandler AddHandler instance.Changed, handler
public event SheetViewEventHandler Changed
Event Data
The event handler receives an argument of type SheetViewEventArgs containing data related to this event. The following SheetViewEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Column | Gets the column index. |
ColumnCount | Gets the number of columns. |
Row | Gets the row index. |
RowCount | Gets the number of rows. |
See Also