'Declaration
Public Event AutoFilteredColumn As AutoFilteredColumnEventHandler
'Usage
Dim instance As FpSpread Dim handler As AutoFilteredColumnEventHandler AddHandler instance.AutoFilteredColumn, handler
public event AutoFilteredColumnEventHandler AutoFilteredColumn
Event Data
The event handler receives an argument of type AutoFilteredColumnEventArgs containing data related to this event. The following AutoFilteredColumnEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Column | Gets the index of the column that was automatically filtered. |
FilterString | Gets the string the column was filtered by. |
Sheet | Gets the sheet whose rows were just automatically filtered. |
See Also