C1.Android.Input Assembly / C1.Android.Input Namespace / C1TextBox Class / AutoComplete Event


AutoComplete Event
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
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