[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ComboBoxCellType.Items

Items Property

Items

Gets the items for the drop-down list in the combo box.

Declaration
public IList<object> Items { get; }
Public ReadOnly Property Items As IList(Of Object)
Examples
ComboBoxCellType cellType = new ComboBoxCellType();
cellType.Items.Add("North");
IList<object> items = cellType.Items;