I create an array of TRadioButton objects for which I need to adjust the TextSettings. However, since I create them "manually," I can't use the Object Inspector, so I can't get at StyledSettings to uncheck things like the font size. If I use Fire Monkey to create a single TRadioButton, then I can use the Object Inspector to uncheck, for example, size in StyledSettings for that one TRadioButton, and then my manual setting of the font size takes effect, but I can't find a way to change the font settings in my array of TRadio Buttons and have it override StyledSettings.
Thanks in advance. Example code is below. (I can't think of a way to show that I don't have access to the Object Inspector for the array of TRadioButtons, but I don't.)
River_Forest
TRadioButton * myButtonList[3];
int y_position = 25;
RadioButton1->Height = 50;
RadioButton1->Width = 200;
RadioButton1->TextSettings->Font->Size = 24;
for (int i = 0; i < 3; i++) {
myButtonList[i] = new TRadioButton(Owner);
myButtonList[i]->Parent = Form2;
myButtonList[i]->Visible = true;
myButtonList[i]->Position->X = 25;
myButtonList[i]->Position->Y = y_position + 25*i;
myButtonList[i]->Text = "Option " + IntToStr(i+1);
myButtonList[i]->TextSettings->Font->Size = 24;
}