'Declaration
Public Event AutoFilteringColumn As AutoFilteringColumnEventHandler
'Usage
Dim instance As FpSpread Dim handler As AutoFilteringColumnEventHandler AddHandler instance.AutoFilteringColumn, handler
public event AutoFilteringColumnEventHandler AutoFilteringColumn
Event Data
The event handler receives an argument of type AutoFilteringColumnEventArgs containing data related to this event. The following AutoFilteringColumnEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | Gets or sets whether to cancel the default processing of automatically filtering columns. |
Column | Gets the index of the column to be automatically filtered. |
FilterString | Gets or sets the string to filter the column by. |
Sheet | Gets the sheet whose rows are to be automatically filtered. |
See Also