Skip to main content
Tag

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

PivotGridField.DisplayFolder Property

Gets or sets the name of the folder in which the field is located. This is a dependency property.

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v24.2.dll

NuGet Package: DevExpress.Wpf.PivotGrid

#Declaration

public string DisplayFolder { get; set; }

#Property Value

Type Description
String

A String that specifies the name of the folder in which the field is located.

#Remarks

In a regular data binding mode, assign a folder name to the DisplayFolder property to place a field into this folder. In this instance, this field will be displayed within the specified folder in the Field List. To learn more, see User Folders.

Note that you do not need to perform specific actions to create a Field List folder. This will be done automatically once you specify a new folder name to the DisplayFolder property of a field.

You can also create folder hierarchies by nesting folders inside one another. In this instance, use the “" symbol as a delimiter when specifying folder names.

To enable displaying user folders, set the PivotGridControl.GroupFieldsInFieldList property to true.

In the OLAP mode, use the DisplayFolder property to obtain the name of a server-defined display folder or measure group to which the field belongs.

See Also