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

PivotGridControl.ShowUnboundExpressionEditor(PivotGridField) Method

Invokes the Expression Editor that enables editing a specified unbound field’s expression.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v18.2.dll

Declaration

public virtual bool ShowUnboundExpressionEditor(
    PivotGridField field
)

Parameters

Name Type Description
field PivotGridField

A PivotGridField that represents an unbound field whose expression will be edited in the Expression Editor.

Returns

Type Description
Boolean

true if the OK button has been pressed when closing the editor; otherwise, false.

Remarks

Data for unbound fields can be provided by specifying an expression using the PivotGridFieldBase.UnboundExpression property. At runtime, an end-user can edit expressions for unbound fields using an Expression Editor - a specially designed modal form. This editor can be opened:

For more information on unbound fields, see Unbound Fields.

See Also