Xamarin.iOS Documentation | ComponentOne
C1.iOS.Input Assembly / C1.iOS.Input Namespace / C1TextBox Class / AutoComplete Event


In This Topic
    AutoComplete Event
    In This Topic
    Gets or sets the callback used to provide the auto-completion text.
    Syntax
    'Declaration
     
    
    Public Event AutoComplete As EventHandler(Of TextBoxAutoCompleteEventArgs)
    'Usage
     
    
    Dim instance As C1TextBox
    Dim handler As EventHandler(Of TextBoxAutoCompleteEventArgs)
     
    AddHandler instance.AutoComplete, handler
    public event EventHandler<TextBoxAutoCompleteEventArgs> AutoComplete
    Event Data

    The event handler receives an argument of type 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