Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Row

PivotField.ShowHeaderDropDown Property

Specifies whether or not to show a drop-down button on the field header.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v21.1.Core.dll

Declaration

bool ShowHeaderDropDown { get; set; }

Property Value

Type Description
Boolean

true to show the drop-down button for the field; otherwise, false.

Remarks

The following example hides the drop-down button for the Product field. End users cannot sort or filter field items.

pivotTable.Fields["Product"].ShowHeaderDropDown = false;

Hide a drop-down button for the pivot field

See Also