'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 filtering. |
Col | Gets or sets the filter column. (Inherited from FarPoint.Web.Spread.AutoFilteredColumnEventArgs) |
FilterString | Gets the filter string. (Inherited from FarPoint.Web.Spread.AutoFilteredColumnEventArgs) |
Spread | Gets or sets the Spread object. (Inherited from FarPoint.Web.Spread.AutoFilteredColumnEventArgs) |
See Also