'Declaration Public Property MaxLength As Integer
'Usage Dim instance As ComboBoxCellType Dim value As Integer instance.MaxLength = value value = instance.MaxLength
public int MaxLength {get; set;}
'Declaration Public Property MaxLength As Integer
'Usage Dim instance As ComboBoxCellType Dim value As Integer instance.MaxLength = value value = instance.MaxLength
public int MaxLength {get; set;}
By default, the text in the edit field is limited to 255 characters and is left aligned. You can change the maximum number of characters allowed by setting this property.
FarPoint.Win.Spread.CellType.ComboBoxCellType cb = new FarPoint.Win.Spread.CellType.ComboBoxCellType(); cb.Items = new string[] {"OneHundredThousand", "TwoHundredThousand", "ThreeHundredThousand"}; cb.ListWidth = 0; cb.MaxLength = 10; cb.Editable = true; fpSpread1.ActiveSheet.Cells[0, 0].CellType = cb; fpSpread1.ActiveSheet.Columns[0].Width = 120;
Dim cb As New FarPoint.Win.Spread.CellType.ComboBoxCellType cb.Items = New String() {"OneHundredThousand", "TwoHundredThousand", "ThreeHundredThousand"} cb.ListWidth = 0 cb.MaxLength = 10 cb.Editable = True fpSpread1.ActiveSheet.Cells(0, 0).CellType = cb fpSpread1.ActiveSheet.Columns(0).Width = 120