RadioGroup 中 items 用法 (初学者求指点)

RadioGroup 中 items 用法 (菜鸟求指点)
    如果我在  items 中  加入了10个项。。这时我取去指定项的值既字符串 该如何求高手指点

------解决方案--------------------
for (int i = 0; i < 10; i++)
{
    RadioGroup1->Items->Add(String(i));
}

// 显示第三项的值
ShowMessage(RadioGroup1->Items->Strings[2]);

// 查找字符串为5的项目索引
int nIndex = RadioGroup1->Items->IndexOf("5");
ShowMessage(IntToStr(nIndex));