Vcl.ExtCtrls.TCustomRadioGroup.Buttons

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Buttons[Index: Integer]: TRadioButton read GetButtons;

C++

__property Vcl::Stdctrls::TRadioButton* Buttons[int Index] = {read=GetButtons};

Properties

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

Description

Access individual TRadioButton objects.

Buttons provides direct access to the individual TRadioButton objects created by the control. Buttons is a read-only property. This means you can access individual TRadioButton objects, but you cannot add or delete TRadioButton objects. To modify the button list, change the Items property.

Index is the zero-origin button index. If Index is equal to or greater than the number of buttons, an error is raised.

See Also