Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TreeList.UnboundExpressionEditorCreated Event

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

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

#Declaration

public event UnboundExpressionEditorEventHandler UnboundExpressionEditorCreated

#Event Data

The UnboundExpressionEditorCreated event's data class is DevExpress.XtraTreeList.TreeListUnboundExpressionEditorEventArgs.

#Remarks

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

The UnboundExpressionEditorCreated event fires after the Expression Editor has been created, but before it’s displayed onscreen. You can handle it to complete 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