'Declaration Public Event QueryItemFromText As EventHandler(Of QueryItemFromTextEventArgs)
'Usage Dim instance As TokenizedTextBox Dim handler As EventHandler(Of QueryItemFromTextEventArgs) AddHandler instance.QueryItemFromText, handler
public event EventHandler<QueryItemFromTextEventArgs> QueryItemFromText
Event Data
The event handler receives an argument of type QueryItemFromTextEventArgs containing data related to this event. The following QueryItemFromTextEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Item | The item corresponding to the maching text. This value should be set by the user if there is a matching item for the specified text. |
Text | The text corresponding to the maching item. |
Requirements
See Also