ComboBox.IsEditable Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public:
property bool IsEditable { bool get(); };
public:
property bool IsEditable { bool get(); void set(bool value); };
bool IsEditable();
bool IsEditable();
void IsEditable(bool value);
public bool IsEditable { get; }
public bool IsEditable { get; set; }
var boolean = comboBox.isEditable;
var boolean = comboBox.isEditable;
comboBox.isEditable = boolean;
Public ReadOnly Property IsEditable As Boolean
Public Property IsEditable As Boolean
<ComboBox IsEditable="bool"/>
Property Value
Boolean
bool
true if the user can edit text in the ComboBox, otherwise false. The default is false. See remarks.
Remarks
Important
The behavior of this property is changed in Windows 10, version 1809 (SDK 17763). In earlier versions of Windows, this property is read-only and always returns false.
For more info, see Make a combo box editable.