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

TcxCustomCheckListBox.EditValueFormat Property

Specifies the edit value format.

#Declaration

Delphi
property EditValueFormat: TcxCheckStatesValueFormat read; write; default cvfInteger;

#Property Value

Type Default
TcxCheckStatesValueFormat cvfInteger

#Remarks

Use the EditValueFormat to specify how the editor interprets the checked items’ states into the edit value. See the TcxCheckStatesValueFormat type description for the list of available options.

Note that you can provide a custom conversion from check states to the edit value. To do so, you should handle the OnCheckStatesToEditValue and OnEditValueToCheckStates events.

The default value of the EditValueFormat property is cvfInteger.

Note

To provide support for grayed items in an editor, set its EditValueFormat property to a value other than a cvfInteger value.

See Also