Spread for ASP.NET 7.0 Product Documentation
ListItems Property
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > ComboBoxCellType Class : ListItems Property


Glossary Item Box

Gets or sets the list items for the combo box list.

Syntax

Visual Basic (Declaration) 
Public Property ListItems As ListItem()
Visual Basic (Usage)Copy Code
Dim instance As ComboBoxCellType
Dim value() As ListItem
 
instance.ListItems = value
 
value = instance.ListItems
C# 
public ListItem[] ListItems {get; set;}

Property Value

ListItem array with the list of items

Example

C#Copy Code
FarPoint.Web.Spread.ComboBoxCellType cb = new FarPoint.Web.Spread.ComboBoxCellType();
FarPoint.Web.Spread.ListItem[] items = new FarPoint.Web.Spread.ListItem[2];
FarPoint.Web.Spread.ListItem item = new FarPoint.Web.Spread.ListItem();
item.Text = "A";
item.Value = "1";
items[0] = item;
item = new FarPoint.Web.Spread.ListItem();
item.Text = "B";
item.Value = "2";
items[1] = item;
cb.ListItems = items;
cb.CssClass = "CssStyle1";
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = cb;
Visual BasicCopy Code
Dim cb As New FarPoint.Web.Spread.ComboBoxCellType
Dim items(2) As FarPoint.Web.Spread.ListItem
Dim item As New FarPoint.Web.Spread.ListItem
item.Text = "A"
item.Value = "1"
items(0) = item
item = New FarPoint.Web.Spread.ListItem
item.Text = "B"
item.Value = "2"
items(1) = item
cb.ListItems = items
cb.CssClass = "CssStyle1"
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = cb

Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.