Spread Windows Forms 12.0 Product Documentation
ColumnEditName Property
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.CellType Namespace > MultiColumnComboBoxCellType Class : ColumnEditName Property
Gets or sets which list column (by name) serves as the edit portion of the combo box.
Syntax
'Declaration
 
Public Property ColumnEditName As String
'Usage
 
Dim instance As MultiColumnComboBoxCellType
Dim value As String
 
instance.ColumnEditName = value
 
value = instance.ColumnEditName
public string ColumnEditName {get; set;}

Property Value

String containing the name of the column
Example
This example sets which column to use for the edit portion of the combo box and which list column serves as the data column in the combo box.
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
See Also

Reference

MultiColumnComboBoxCellType Class
MultiColumnComboBoxCellType Members