aspnet-devexpress-dot-web-dot-aspxfiltercontrolbase-19c17bde.md
Enables the editors displayed within the criteria value to be initialized.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public event FilterControlCriteriaValueEditorInitializeEventHandler CriteriaValueEditorInitialize
Public Event CriteriaValueEditorInitialize As FilterControlCriteriaValueEditorInitializeEventHandler
The CriteriaValueEditorInitialize event's data class is FilterControlCriteriaValueEditorInitializeEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| Column | Gets the column whose editor is being initialized. |
| Editor | Gets the processed editor. |
| Value | Gets the processed editor value. |
The CriteriaValueEditorInitialize event enables you to customize criteria value editor properties.
The event parameter’s FilterControlCriteriaValueEditorInitializeEventArgs.Column property identifies the column whose editor is being initialized. The processed editor is returned by the FilterControlCriteriaValueEditorInitializeEventArgs.Editor property. Its value is returned by the FilterControlCriteriaValueEditorInitializeEventArgs.Value property.
See Also