Spread WinForms 15
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / GcComboBoxCellType Class / DropDownStyle Property


In This Topic
DropDownStyle Property (GcComboBoxCellType)
In This Topic
Gets or sets the drop-down style.
Syntax
'Declaration
 
Public Property DropDownStyle As ComboBoxStyle
 
'Usage
 
Dim instance As GcComboBoxCellType
Dim value As ComboBoxStyle
 
instance.DropDownStyle = value
 
value = instance.DropDownStyle

Property Value

A System.Windows.Forms.ComboBoxStyle value.
The default is System.Windows.Forms.ComboBoxStyle.DropDown.
Remarks
The DropDownStyle property controls the interface that is presented to the user. You can enter a value that provides a simple drop-down list box, where the list always displays, a drop-down list box, where the text portion is not editable and you must select an arrow to view the drop-down, or the default drop-down list box, where the text portion is editable and the user must press the arrow key to view the list.

If you set the DropDownStyle property to DropDownList, you can select only valid values from the list. If you set the DropDownStyle property to DropDown, you can type any value in the editable area of the GcComboBox cell. In this case, the Append value of AutoCompleteMode works the same as the System.Windows.Forms.AutoCompleteMode.SuggestAppend value of AutoCompleteMode.

See Also