RobertDAltman
8 years agoOccasional Contributor
How to add radio buttons to a UserForm?
Can someone please post an example that shows how to add a radio button to a UserForm?
I have a UserForm that contains a TcxRadioGroup whose Name property is radioGroup. If I want to add a radio button to that radio group, I assume I need something like this:
var userForm = UserForms.MyForm; userForm.RadioGroup.Properties.Items.Add( something );
but I can find no documentation or examples of the mysterious "something" in the above example. The only relevant documentation (such as it is) is here.