FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.CellType 名前空間 > MultiColumnComboBoxCellType クラス : ColumnEditName プロパティ |
'Declaration Public Property ColumnEditName As String
'使用法 Dim instance As MultiColumnComboBoxCellType Dim value As String instance.ColumnEditName = value value = instance.ColumnEditName
public string ColumnEditName {get; set;}
FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType mc = new FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType(); mc.DataSourceList = ds; mc.ListResizeColumns = FarPoint.Win.Spread.CellType.ListResizeColumns.FitWidestItem; mc.ListWidth = 860; mc.ColumnEditName = "FName"; mc.DataColumnName = "FName"; fpSpread1.ActiveSheet.Cells[0, 0].CellType = mc;
Dim mc As New FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType mc.DataSourceList = ds mc.ListResizeColumns = FarPoint.Win.Spread.CellType.ListResizeColumns.FitWidestItem mc.ListWidth = 860 mc.ColumnEditName = "FName" mc.DataColumnName = "FName" FpSpread1.ActiveSheet.Cells(0, 0).CellType = mc