Spread for ASP.NET 10 Product Documentation
DataSourceID Property (MultiColumnComboBoxCellType)
Example 


Gets or sets the unique identifier of the data source for the MultiColumnComboBoxCellType.
Syntax
'Declaration
 
Public Property DataSourceID As String
'Usage
 
Dim instance As MultiColumnComboBoxCellType
Dim value As String
 
instance.DataSourceID = value
 
value = instance.DataSourceID
public string DataSourceID {get; set;}
Remarks
DataSourceID is the control ID of an IDataSource that will be used as the data source.
Example
This example sets the DataSourceID property.
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;
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 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

MultiColumnComboBoxCellType Class
MultiColumnComboBoxCellType Members

 

 


Copyright © GrapeCity, inc. All rights reserved.