ASPxTokenBox.CustomTokensAdded Event
In This Article
Serves as a notification that the token box contains custom tokens.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public event TokenBoxCustomTokensAddedEventHandler CustomTokensAdded
#Event Data
The CustomTokensAdded event's data class is TokenBoxCustomTokensAddedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Custom |
Gets the collection of custom tokens. |
#Remarks
The CustomTokensAdded event provides notification that the token box control contains custom tokens. You can use the event handler to add the tokens to the ASPxAutoCompleteBoxBase.Items collection. The TokenBoxCustomTokensAddedEventArgs.CustomTokens event argument property returns a collection of custom tokens.
See Also