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.v18.2.Core.dll

Declaration

[DefaultValue(true)]
[XtraSerializableProperty]
[TypeConverter(typeof(BooleanTypeConverter))]
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
ASP.NET Controls and MVC Extensions PivotGridField
.Options.ShowInExpressionEditor
MVCxPivotGridField
.Options.ShowInExpressionEditor
Reporting XRPivotGridField
.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