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

TdxGuide.OnGetCalloutPopupControl Event

In This Article

Allows you to display a callout in response to clicking the guide UI adorner.

#Declaration

Delphi
property OnGetCalloutPopupControl: TdxGuideGetCalloutPopupControl read; write;

#Remarks

This event occurs every time the guide is clicked if the AllowCalloutPopup property is set to True. Handle this event and pass a control, form, or frame as the AControl parameter to provide the callout’s content. Refer to the TdxGuideGetCalloutPopupControl type description for additional information.

The guide’s callout popup is not displayed if the OnGetCalloutPopupControl event is not handled or the AControl parameter is unspecified.

Alternatively, you can handle the UI adorner manager‘s OnGuideGetCalloutPopupControl event to provide content for the guide’s callout popup.

See Also