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