Unique names of fields for that quick filters were shown.
Syntax
| Visual Basic (Declaration) | |
|---|
ReadOnly Property Fields As System.Collections.Generic.IEnumerable(Of String) |
| C# | |
|---|
System.Collections.Generic.IEnumerable<string> Fields {get;} |
Example
The following sample demonstrates how to move all quick filters at the right side.
| C# | Copy Code |
|---|
foreach (string field in PivotView.QuickFilters.Fields)
{
PivotView.QuickFilters.GetCard(field).Order = 0;
} |
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