Skip to main content

TdxNavBarCustomDrawEvents.LinkHint Event

Allows you to custom paint link hints.

Declaration

property LinkHint: TdxNavBarCustomDrawLinkHintEvent read; write;

Remarks

The Sender parameter specifies the sender of the event. The sender of the event is the NavBar control.

The ACanvas parameter specifies an object of the TCanvas type which provides access to the drawing space of the NavBar link hint.

The ALink parameter specifies an object of the TdxNavBarItemLink type which represents the NavBar link whose hint needs repainting.

The AHint parameter specifies text content of the link hint.

The R parameter specifies an object of the TRect type which represents rectangular dimensions of the NavBar link hint. The parameter’s initial values are calculated by the control itself, but you can change them.

The AHandled parameter specifies whether further link hint painting is needed. Set the parameter to True to disable the default paining routines; set it to False to perform the default painting routines after the custom painting.

See Also