Skip to main content

CheckEdit.QueryValueByCheckState Event

Allows you to implement custom/runtime Edit Value to Check State conversion.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v25.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DXCategory("Events")]
public event QueryValueByCheckStateEventHandler QueryValueByCheckState

Event Data

The QueryValueByCheckState event's data class is QueryValueByCheckStateEventArgs. The following properties provide information specific to this event:

Property Description
CheckState Gets the editor’s current check state.
Handled Gets or sets whether the event is handled and no default processing is required. Inherited from QueryCheckStatesEventArgs.
Value Use this property to set the edit value that corresponds to the current check state.

Remarks

Handle the following events for runtime Check StateEdit Value conversion:

See Also