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

TcxDBRadioGroup Class

Represents a data-aware version of the radio group control.

#Declaration

Delphi
TcxDBRadioGroup = class(
    TcxCustomRadioGroup
)

#Remarks

The TcxDBRadioGroup object represents a data-aware version of the radio group control. It inherits all basic functionality from its ancestor – TcxCustomRadioGroup class.

The data-aware functionality is encapsulated within the DataBinding property. It allows you to specify the DataSource and the DataField to which an editor is bound. The values of the data field specified by the DataBinding.DataField property must correspond to the Value property value of the radio buttons included into a group. If the bound field’s value matches a value of a radio button within the group, this item appears selected. If the field value doesn’t match any of item values, none of buttons in the radio group are selected.

See Also