Gets or sets whether this column allows automatic filtering.
Syntax
Visual Basic (Declaration) | |
---|
Public Property AllowAutoFilter As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As Column
Dim value As Boolean
instance.AllowAutoFilter = value
value = instance.AllowAutoFilter |
C# | |
---|
public bool AllowAutoFilter {get; set;} |
Property Value
Boolean:
true to allow automatic filtering;
false otherwise
Remarks
Example
This example allows a filter to be automatically set on the second column.
C# | Copy Code |
---|
fpSpread1.ActiveSheet.Columns[1].AllowAutoFilter = true;
|
Visual Basic | Copy Code |
---|
FpSpread1.ActiveSheet.Columns(1).AllowAutoFilter = True |
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