FlexGrid for WPF | ComponentOne
C1.WPF.Grid Assembly / C1.WPF.Grid Namespace / GridFilterCell Class / AutoComplete Event

In This Topic
    AutoComplete Event
    In This Topic
    Called when the auto-complete of the text-box is triggered.
    Syntax
    'Declaration
     
    Public Event AutoComplete As EventHandler(Of TextBoxAutoCompleteEventArgs)
    public event EventHandler<TextBoxAutoCompleteEventArgs> AutoComplete
    Event Data

    The event handler receives an argument of type C1.WPF.Input.TextBoxAutoCompleteEventArgs containing data related to this event. The following TextBoxAutoCompleteEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets or sets the text used to auto-complete.  
    Gets or sets the text that is being auto-completed.  
    See Also