Skip to main content
A newer version of this page is available. .
All docs
V21.2
.NET Framework 4.5.2+
Row

PivotFieldReferenceBase.Position Property

Returns or specifies the field position in the collection that corresponds to the PivotTable area where this field is located.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v21.2.Core.dll

Declaration

int Position { get; set; }

Property Value

Type Description
Int32

A zero-based index of the field in the collection.

Remarks

Use the Position property to rearrange fields in a specific area of the PivotTable report.

The following example moves the Category field to the first position in the row axis area:

// Access a pivot table.
PivotTable pivotTable = worksheet.PivotTables[0];

// Move the "Category" row field to the first position.
pivotTable.RowFields["Category"].Position = 0;

Rearrange pivot fields

See Also