Spread for ASP.NET 12 Product Documentation
AutoFilteringColumn Event


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > FpSpread Class : AutoFilteringColumn Event
Occurs when the user is filtering.
Syntax
'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.

PropertyDescription
Gets or sets whether to cancel the filtering.  
Gets or sets the filter column. (Inherited from FarPoint.Web.Spread.AutoFilteredColumnEventArgs)
Gets the filter string. (Inherited from FarPoint.Web.Spread.AutoFilteredColumnEventArgs)
Gets or sets the Spread object. (Inherited from FarPoint.Web.Spread.AutoFilteredColumnEventArgs)
See Also