Skip to main content

ASPxClientTokenBox.IsCustomToken(text, caseSensitive) Method

Returns a value that indicates if the specified token (string) is a custom token.

Declaration

IsCustomToken(
    text: string,
    caseSensitive: boolean
): boolean

Parameters

Name Type Description
text string

A string value that is a token.

caseSensitive boolean

true, if tokens are case sensitive; otherwise, false.

Returns

Type Description
boolean

true, if the token is not contained in the predefined ASPxAutoCompleteBoxBase.Items collection; otherwise, false.

Remarks

Use the IsCustomToken method to determine if the token specified by the text parameter is not contained in the predefined ASPxAutoCompleteBoxBase.Items collection.

See Also