Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Introduced in build 8.4

Description

The SortOptions class contains all of the sorting options for a PivotTableField.

C#
public sealed class SortOptions
vb.net
Public NotInheritable Class SortOptions

Examples

C#
ExcelApplication xla = new ExcelApplication();
Workbook wb = xla.Open("template.xlsx");
SortOptions options = wb[0].PivotTables[0].ColumnLabels[0].SortOptions;
vb.net
Dim xla As New ExcelApplication()
Dim wb As Workbook = xla.Open("template.xlsx")
Dim options As SortOptions = wb(0).PivotTables(0).ColumnLabels(0).SortOptions;

Properties

Name

Description

Ordering

Sets or returns the ordering of the PivotTableField using an OrderingType. This only has an affect on row labels and column labels.

OrderingType

The OrderingType class contains the options for ordering a PivotTableField.

  • No labels