Gets or sets a value indicating whether the combobox includes an editable textbox as
well as a drop-down list.
Syntax
'Declaration
Public Property Edit As Boolean
'Usage
Dim instance As ComboBox
Dim value As Boolean
instance.Edit = value
value = instance.Edit
public bool Edit {get; set;}
public: __property bool get_Edit();
public: __property void set_Edit(
bool value
);
public:
property bool Edit {
bool get();
void set ( bool value);
}
Property Value
Whether the combobox includes an editable textbox as well as a drop-down list.
See Also