Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Editors Namespace / WinComboBox Class / QueryItemText Event


In This Topic
    QueryItemText Event
    In This Topic
    Raised when the value of the QueryItemText property is changed.
    Syntax
    'Declaration
     
    <DescriptionAttribute("Raised when the value of the QueryItemText property is changed.")>
    <CategoryAttribute("Property Changed")>
    Public Event QueryItemText As QueryItemTextEventHandler
    'Usage
     
    Dim instance As WinComboBox
    Dim handler As QueryItemTextEventHandler
     
    AddHandler instance.QueryItemText, handler
    [Description("Raised when the value of the QueryItemText property is changed.")]
    [Category("Property Changed")]
    public event QueryItemTextEventHandler QueryItemText
    Event Data

    The event handler receives an argument of type QueryItemTextEventArgs containing data related to this event. The following QueryItemTextEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the format with which the SelectedItem is displayed in the WinComboBox.  
    Gets the ComboBoxItem currently selected in the WinComboBox's dropdown.  
    Gets or sets the SelectedItem's text to display in the WinComboBox.  
    Requirements

    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

    See Also