Adds a filter column definition to the row filter.
Syntax
Parameters
- fcd
- FilterColumnDefinition object containing the filter column definition
Example
This example adds a filtered column to the row filter.
C# | Copy Code |
---|
fpSpread1.ActiveSheet.Columns[0].AllowAutoFilter = true;
fpSpread1.ActiveSheet.RowFilter.AddColumn(new FarPoint.Win.Spread.FilterColumnDefinition(1));
|
Visual Basic | Copy Code |
---|
FpSpread1.ActiveSheet.Columns(0).AllowAutoFilter = True
FpSpread1.ActiveSheet.RowFilter.AddColumn(New FarPoint.Win.Spread.FilterColumnDefinition(1)) |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also