Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

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.

Gets or sets a value that indicates whether the user can edit text in the text box portion of the ComboBox. See remarks.

public:
 property bool IsEditable { bool get(); void set(bool value); };
bool IsEditable();

void IsEditable(bool value);
public bool IsEditable { get; set; }
var boolean = comboBox.isEditable;
comboBox.isEditable = 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.

Applies to


Feedback

Was this page helpful?