'Declaration Public Event QuerySuggestItemForText As EventHandler(Of QuerySuggestItemForTextEventArgs)
'Usage Dim instance As TokenizedTextBox Dim handler As EventHandler(Of QuerySuggestItemForTextEventArgs) AddHandler instance.QuerySuggestItemForText, handler
public event EventHandler<QuerySuggestItemForTextEventArgs> QuerySuggestItemForText
Event Data
The event handler receives an argument of type QuerySuggestItemForTextEventArgs containing data related to this event. The following QuerySuggestItemForTextEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Item | The item corresponding to the maching text. |
SuggestItem | This value should be set to True to specify if the provided item should be displayed in the dropdown suggestion box, taking into account the actual input provided by the QuerySuggestItemForTextEventArgs.Text property. |
Text | The text corresponding to the current input text. |
Requirements
See Also