Spread for ASP.NET 10 Product Documentation
ListBoxCellType Constructor()
Example 


Creates a new list box cell.
Syntax
'Declaration
 
Public Function New()
'Usage
 
Dim instance As New ListBoxCellType()
public ListBoxCellType()
Example
This example creates a list box cell type, sets up an array of items for the list, sets the background and foreground color for the selected item and assigns the object to the first cell in the sheet.
FarPoint.Web.Spread.ListBoxCellType lbcell = new FarPoint.Web.Spread.ListBoxCellType();
lbcell.Items = new String[] {"Carbon", "Oxygen", "Hydrogen"};
lbcell.SelectedBackColor = Color.Yellow;
lbcell.SelectedForeColor = Color.DarkBlue;
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = lbcell;
FpSpread1.ActiveSheetView.Rows[0].Height = 140;
Dim lbcell As New FarPoint.Web.Spread.ListBoxCellType()
lbcell.Items = New String() {"Carbon", "Oxygen", "Hydrogen"}
lbcell.SelectedBackColor = Color.Yellow
lbcell.SelectedForeColor = Color.DarkBlue
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = lbcell
FpSpread1.ActiveSheetView.Rows(0).Height = 140
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

ListBoxCellType Class
ListBoxCellType Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.