Solved
Forum Discussion
YuriPeshekhonov
Alumni
8 years agoHi,
As far as I can tell, the items can be added only at the design time (see the attached screenshot). They cannot be added during the run-time.
RobertDAltman
8 years agoOccasional Contributor
The Items.Add() method returns the new radio button, so:
var frm = UserForms.MyForm; var rb = frm.radioGroup.Properties.Items.Add(); rb.Caption = "My caption";
Note that code completion does not display most of the available properties and methods. For reference, the manual page for the TcxRadioGroupItem object is here.