Xceed Toolkit for .NET Maui v2.0 Documentation
Xceed.Maui.Toolkit Assembly / Xceed.Maui.Toolkit Namespace / ComboBox Class / IsEditable Property


In This Topic
    IsEditable Property
    In This Topic
    Gets or sets if the ComboBox offers an editable TextBox when the Popup is opened.
    Syntax
    'Declaration
     
    
    Public Property IsEditable As Boolean
    'Usage
     
    
    Dim instance As ComboBox
    Dim value As Boolean
     
    instance.IsEditable = value
     
    value = instance.IsEditable
    public bool IsEditable {get; set;}

    Property Value

    The editable TextBox allows to filter the items displayed in the ComboBox's Popup based on what is typed in said TextBox.

    The default value is false, which hides the editable TextBox & therefore doesn't allow any kind of items filtering.

    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also