'Declaration Public Property Items As ListItemCollectionInfo
'Usage Dim instance As GcComboBoxCellType Dim value As ListItemCollectionInfo instance.Items = value value = instance.Items
public ListItemCollectionInfo Items {get; set;}
'Declaration Public Property Items As ListItemCollectionInfo
'Usage Dim instance As GcComboBoxCellType Dim value As ListItemCollectionInfo instance.Items = value value = instance.Items
public ListItemCollectionInfo Items {get; set;}
GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType gccombo = new GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType(); gccombo.Items.Add("Gouda"); gccombo.Items.Add("Swiss"); gccombo.Items.Add("Brie"); gccombo.Items[0].BackColor = Color.Beige; gccombo.Items[1].BackColor = Color.Cornsilk; gccombo.Items[2].BackColor = Color.PeachPuff; fpSpread1.Sheets[0].Cells[0, 0].CellType = gccombo;
Dim gccombo As New GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType() gccombo.Items.Add("Gouda") gccombo.Items.Add("Swiss") gccombo.Items.Add("Brie") gccombo.Items(0).BackColor = Color.Beige gccombo.Items(1).BackColor = Color.Cornsilk gccombo.Items(2).BackColor = Color.PeachPuff FpSpread1.Sheets(0).Cells(0, 0).CellType = gccombo