Disable RadioGroup item

Posted in Components

All, what you need to do, is to use Controls property of RadioGroup component.

procedure TForm1.Button1Click(Sender: TObject);
begin
  TRadioButton(RadioGroup1.Controls[1]).Enabled:=False;
end;