Intersoft.Client.UI.Aqua.UXCollection Namespace > UXComboBox Class : IsEditable Property |
<CategoryAttribute("Common Properties")> Public Overridable Property IsEditable As Boolean
Dim instance As UXComboBox Dim value As Boolean instance.IsEditable = value value = instance.IsEditable
[CategoryAttribute("Common Properties")] public virtual bool IsEditable {get; set;}
[CategoryAttribute("Common Properties")] public: virtual property bool IsEditable { bool get(); void set ( bool value); }
UXComboBox supports editable mode that works in conjunction with the text search. If you enable both editable and text search feature, UXComboBox automatically completes the text whenever it found a match in the items. To enable editable mode, set IsEditable set to True, such as shown in the following example.
XAML |
Copy Code
|
---|---|
<Intersoft:UXComboBox HorizontalAlignment="Left" VerticalAlignment="Top" Width="150" IsTextSearchEnabled="True" IsEditable="True"> <Intersoft:UXComboItem Content="Andrew"/> <Intersoft:UXComboItem Content="Angela"/> <Intersoft:UXComboItem Content="Angeline"/> <Intersoft:UXComboItem Content="David"/> <Intersoft:UXComboItem Content="Hill"/> <Intersoft:UXComboItem Content="Karen"/> <Intersoft:UXComboItem Content="Kory"/> <Intersoft:UXComboItem Content="Michelle"/> </Intersoft:UXComboBox> |
Target Platforms: 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