Forum Discussion

RobertDAltman's avatar
RobertDAltman
Occasional Contributor
7 years ago
Solved

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...
  • RobertDAltman's avatar
    RobertDAltman
    7 years ago

    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.