Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PivotGridOptionsView.FixedColumnLocation Property

Gets or sets a pinned column’s location.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v24.2.dll

NuGet Package: DevExpress.Win.PivotGrid

#Declaration

[DefaultValue(FixedColumnStyle.FixedLeft)]
public FixedColumnStyle FixedColumnLocation { get; set; }

#Property Value

Type Default Description
FixedColumnStyle FixedLeft

A DevExpress.XtraPivotGrid.FixedColumnStyle object that specifies whether to pin columns to the left or the right edge.

Available values:

Name Description
FixedLeft

Determines that columns are pinned to the left edge.

FixedRight

Determines that columns are pinned to the right edge.

#Property Paths

You can access this nested property as listed below:

Object Type Path to FixedColumnLocation
PivotGridControl
.OptionsView .FixedColumnLocation

#Remarks

The following code snippet changed the pinned column’s location to right:

C#
pivotGridControl1.OptionsView.FixedColumnLocation = FixedColumnStyle.FixedRight;
See Also