Skip to main content
Tag

PivotGridField.AllowUnboundExpressionEditor Property

Gets or sets whether end-users can invoke the Expression Editor for the field. This is a dependency property.

Namespace: DevExpress.Xpf.PivotGrid

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

NuGet Package: DevExpress.Wpf.PivotGrid

Declaration

[Browsable(false)]
public bool AllowUnboundExpressionEditor { get; set; }

Property Value

Type Description
Boolean

true if end-users are allowed to invoke the Expression Editor for the field; otherwise, false.

Remarks

To provide data for an unbound field, handle the PivotGridControl.CustomUnboundFieldData event, or specify an expression via the PivotGridField.UnboundExpression property. The Expression Editor Customization section describes the syntax for creating expressions.

If the AllowUnboundExpressionEditor option is enabled, an end-user can edit a field’s expression via the Expression Editor at runtime.

To learn more, see Unbound Fields.

See Also