Intersoft ClientUI Documentation
IsEditable Property
See Also  Send Feedback
Intersoft.Client.UI.Aqua.UXCollection Namespace > UXComboBox Class : IsEditable Property






Gets or sets a value that indicates whether the UXComboBox is editable.

Syntax

Visual Basic (Declaration) 
<CategoryAttribute("Common Properties")>
Public Overridable Property IsEditable As Boolean
Visual Basic (Usage)Copy Code
Dim instance As UXComboBox
Dim value As Boolean
 
instance.IsEditable = value
 
value = instance.IsEditable
C# 
[CategoryAttribute("Common Properties")]
public virtual bool IsEditable {get; set;}
Delphi 
public read-write property IsEditable: Boolean; virtual; 
JScript 
CategoryAttribute("Common Properties")
public function get,set IsEditable : boolean
Managed Extensions for C++ 
[CategoryAttribute("Common Properties")]
public: __property virtual bool get_IsEditable();
public: __property virtual void set_IsEditable( 
   bool value
);
C++/CLI 
[CategoryAttribute("Common Properties")]
public:
virtual property bool IsEditable {
   bool get();
   void set (    bool value);
}

Remarks

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>

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.