PowerTools SPREAD for ASP.NET 8.0J
DataSourceID プロパティ (MultiColumnComboBoxCellType)

MultiColumnComboBoxCellTypeのデータソースを表す一意の識別子を取得または設定します。
構文
'Declaration
 
Public Property DataSourceID As String
public string DataSourceID {get; set;}
解説
DataSourceIDは、データソースとして使用されるIDataSourceのコントロールIDです。
次のサンプルコードは、DataSourceIDプロパティを設定します。
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
参照

MultiColumnComboBoxCellType クラス
MultiColumnComboBoxCellType メンバ

 

 


© 2003-2015, GrapeCity inc. All rights reserved.