Spread ASP.NET 6.0 Product Documentation
MultiColumnComboBoxCellType Constructor
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > MultiColumnComboBoxCellType Class : MultiColumnComboBoxCellType Constructor


Glossary Item Box

Creates a new multiple-column combo box cell.

Syntax

Visual Basic (Declaration) 
Public Function New()
Visual Basic (Usage)Copy Code
Dim instance As New MultiColumnComboBoxCellType()
C# 
public MultiColumnComboBoxCellType()

Example

This example creates a Multi-column combo cell.
C#Copy Code
FarPoint.Web.Spread.MultiColumnComboBoxCellType mccbct = new FarPoint.Web.Spread.MultiColumnComboBoxCellType();
mccbct.ShowButton = true;
mccbct.DataColumn = 0;
mccbct.ColumnEdit = 1;
mccbct.DataSourceID = "SpreadDataSource1";
FpSpread1.Sheets[0].Cells[0,0].CellType = mccbct;
Visual BasicCopy Code
Dim mccbct As New FarPoint.Web.Spread.MultiColumnComboBoxCellType
mccbct.ShowButton = True
mccbct.DataColumn = 0
mccbct.ColumnEdit = 1
mccbct.DataSourceID = "SpreadDataSource1"
FpSpread1.Sheets(0).Cells(0, 0).CellType = mccbct

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.