Skip to main content

PivotGridOptionsCustomization.AllowHideFields Property

Gets or sets a value which specifies when the fields can be hidden by end-users.

Namespace: DevExpress.XtraPivotGrid

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

NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.Win.Navigation

Declaration

[DefaultValue(AllowHideFieldsType.WhenCustomizationFormVisible)]
public AllowHideFieldsType AllowHideFields { get; set; }

Property Value

Type Default Description
AllowHideFieldsType WhenCustomizationFormVisible

An AllowHideFieldsType enumeration value which specifies when the field can be hidden by end-users.

Available values:

Name Description
Never

End-users cannot hide fields.

Always

End-users can always hide fields.

WhenCustomizationFormVisible

End-users can only hide fields when the customization form is visible.

Remarks

End-users can change the location of fields by dragging their headers. Fields can be moved from one area to another. The XtraPivotGrid control allows end-users to hide fields by dropping their headers outside the header areas (data, filter, column and row areas).

The AllowHideFields property controls when an end-user can hide fields. If the field can be hidden an X cursor is displayed - AllowHideField_allow. Otherwise, the cursor which indicates that the field cannot be dropped is displayed - AllowHideField_prohibit.

See Also