Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxTokenEditProperties.OnTokenGlyphClick Event

In This Article

Enables you to respond to clicking a token glyph within the token editor.

#Declaration

Delphi
property OnTokenGlyphClick: TdxTokenEditTokenClickEvent read; write;

#Remarks

This event is raised when an end-user clicks a glyph within a token box.

To address the token editor, its token with the clicked glyph, and the corresponding ID text within the OnTokenGlyphClick event handler, use the Sender, AToken, and ATokenText parameters, respectively.

If you need to respond to clicking the Close glyph, handle the OnTokenDelete event instead.

Note

All token boxes do not display glyphs if the GlyphPosition property is set to teepNone.

See Also