Skip to main content
A newer version of this page is available. .

PivotGridFieldOptions.ShowInExpressionEditor Property

Gets or sets whether the current field is available in the Expression Editor‘s field list.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v20.1.Core.dll

NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.WindowsDesktop.PivotGrid.Core

Declaration

[DefaultValue(true)]
public virtual bool ShowInExpressionEditor { get; set; }

Property Value

Type Default Description
Boolean true

true, if the current field is available in the Expression Editor‘s field list; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to ShowInExpressionEditor
Cross-Platform Class Library PivotGridFieldBase
.Options .ShowInExpressionEditor
WinForms Controls PivotGridField
.Options .ShowInExpressionEditor
Reporting XRPivotGridField
.Options .ShowInExpressionEditor
ASP.NET Web Forms Controls PivotGridField
.Options .ShowInExpressionEditor
MVCxPivotGridField
.Options .ShowInExpressionEditor

Remarks

It is possible to specify expressions for unbound fields using the PivotGridFieldBase.UnboundExpression property. The Expression Editor contains a field list providing access to all available fields. If the ShowInExpressionEditor property is set to false, a field will not be available in the field list.

See Also