[]
Gets the items for the radio button list.
public IList<SelectFieldItem> Items { get; }
Public ReadOnly Property Items As IList(Of SelectFieldItem)
RadioButtonListCellType cellType = new RadioButtonListCellType();
cellType.Items.Add(new SelectFieldItem("Option 1", "1"));
IList<SelectFieldItem> items = cellType.Items;