Vcl.ExtCtrls.TRadioGroup.Items

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Items;

C++

__property Items;

Properties

Type Visibility Source Unit Parent
property published
Vcl.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls TRadioGroup

Description

Lists the radio buttons in the radio group.

Vcl.ExtCtrls.TRadioGroup.Items inherits from Vcl.ExtCtrls.TCustomRadioGroup.Items. All content below this line refers to Vcl.ExtCtrls.TCustomRadioGroup.Items.

Lists the radio buttons in the radio group.

Items holds a TStrings object that lists the captions of the radio buttons in the group. In TCustomRadioGroup descendants, where this property is published, radio buttons can be added or removed by editing the Items list from the Object Inspector.

Note: A TRadioButton object is created automatically for each string in Items. You cannot directly add or remove TRadioButton objects, but you can access individual TButton objects through the Buttons property.

See Also

Code Examples