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

ColumnView.UnboundExpressionEditorCreated Event

Fires after an Expression Editor has been created for an unbound column.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

[DXCategory("Behavior")]
public event UnboundExpressionEditorEventHandler UnboundExpressionEditorCreated

Event Data

The UnboundExpressionEditorCreated event's data class is DevExpress.XtraGrid.Views.Base.UnboundExpressionEditorEventArgs.

Remarks

The Expression Editor lets an end-user edit expressions for unbound columns. The Expression Editor can be invoked as described in the GridColumn.ShowUnboundExpressionMenu topic.

The UnboundExpressionEditorCreated event fires after the Expression Editor has been created, but before it’s displayed onscreen. You can handle it to perform the following tasks:

  • prevent the editor from being displayed. Set the event’s ShowExpressionEditor parameter to false to hide the editor.
  • customize the editor form’s settings. Use the event’s ExpressionEditorForm parameter to access these settings.

For a code sample, see the following example online: How to customize the Expression Editor.

See Also