[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.CheckBoxListCellType.Items

Items Property

Items

Gets the items for the check-box-list.

Declaration
public IList<SelectFieldItem> Items { get; }
Public ReadOnly Property Items As IList(Of SelectFieldItem)
Examples
CheckBoxListCellType cellType = new CheckBoxListCellType();
cellType.Items.Add(new SelectFieldItem("Option 1", "1"));
IList<SelectFieldItem> items = cellType.Items;