dbicTips Send comments on this topic.
UserDrawnFooter Event
See Also 
dbicTips Assembly > Dbi.WinControl.Tips Namespace > dbiTips Class : UserDrawnFooter Event

Occurs before the footer of the tooltip is drawn, allowing the developer to customize the display.

Syntax

Visual Basic (Declaration) 
Public Event UserDrawnFooter As dbiTips.EventUserDrawnFooterHandler
C# 
public event dbiTips.EventUserDrawnFooterHandler UserDrawnFooter

Event Data

The event handler receives an argument of type UserDrawnFooterEventArgs containing data related to this event. The following UserDrawnFooterEventArgs properties provide information specific to this event.

PropertyDescription
Control The control that triggered the tooltip.
Graphics A handle to the graphics object responsible for drawing.
PaintFooter Determines if the internal painting routines should draw the footer of the tooltip.
Rect A rectangle representing the area being painted in the control.
ToolTips The dbiTipsObject that will be displayed.

Requirements

Target Platforms: Current Windows operating system with .NET 8.

See Also