Adds a filter column definition to the row filter with the specified list behavior.
Syntax
Parameters
- viewColumnIndex
- Column index
- listBehavior
- FilterListBehavior object that contains the list behavior
Example
This example adds a filtered column to the row filter.
C# | Copy Code |
---|
fpSpread1.ActiveSheet.Columns[0].AllowAutoFilter = true;
fpSpread1.ActiveSheet.RowFilter.AddColumn(1, FarPoint.Win.Spread.FilterListBehavior.SortAlphabetically)
|
Visual Basic | Copy Code |
---|
FpSpread1.ActiveSheet.Columns(0).AllowAutoFilter = True
FpSpread1.ActiveSheet.RowFilter.AddColumn(1, FarPoint.Win.Spread.FilterListBehavior.SortAlphabetically) |
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
See Also