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

VGridControl.UnboundExpressionEditorCreated Event

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

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v19.1.dll

Declaration

public event UnboundExpressionEditorEventHandler UnboundExpressionEditorCreated

Event Data

The UnboundExpressionEditorCreated event's data class is DevExpress.XtraVerticalGrid.Events.UnboundExpressionEditorEventArgs.

Remarks

The Expression Editor lets an end-user edit expressions for unbound rows. The Expression Editor can be invoked as described in the RowProperties.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.
See Also