Vcl.ExtCtrls.TCustomRadioGroup.Items

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Items: TStrings read FItems write SetItems;

C++

__property System::Classes::TStrings* Items = {read=FItems, write=SetItems};

Properties

Type Visibility Source Unit Parent
property protected
Vcl.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls TCustomRadioGroup

Description

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