Skip to main content

FieldListControlBase.IncludeVisibleFields Property

Gets or sets whether to show visible fields in the Field List. This is a dependency property.

Namespace: DevExpress.Xpf.PivotGrid

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

NuGet Package: DevExpress.Wpf.PivotGrid

Declaration

public bool IncludeVisibleFields { get; set; }

Property Value

Type Description
Boolean

true to show visible fields in the Field List; otherwise, false.

Remarks

If the IncludeVisibleFields property is set to true, the Field List displays both visible and hidden fields. In this instance, field headers are accompanied by check boxes that allow end-users to control the visibility of the corresponding field.

VisibleFieldsInFieldList

The IncludeVisibleFields property is in effect only if the PivotFieldListControl.Area property is set to FieldListArea.All. Otherwise, the Field List shows visible fields located in the specified area.

Note

By default, the IncludeVisibleFields property is bound to the PivotGridControl.FieldListIncludeVisibleFields property. To restore this binding after you have set a local value to the IncludeVisibleFields property, use the ClearValue method.

To learn more, see Field List Overview.

See Also