PivotGridOptionsView.FixedColumnLocation Property
In This Article
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 |
---|---|---|
Fixed |
Fixed |
A DevExpress. |
Available values:
Name | Description |
---|---|
Fixed |
Determines that columns are pinned to the left edge. |
Fixed |
Determines that columns are pinned to the right edge. |
#Property Paths
You can access this nested property as listed below:
Object Type | Path to Fixed |
---|---|
Pivot |
|
#Remarks
The following code snippet changed the pinned column’s location to right:
C#
pivotGridControl1.OptionsView.FixedColumnLocation = FixedColumnStyle.FixedRight;
See Also