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

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

Syntax

Visual Basic (Declaration) 
Public Event UserDrawnHeader As dbiTips.EventUserDrawnHeaderHandler
C# 
public event dbiTips.EventUserDrawnHeaderHandler UserDrawnHeader

Event Data

The event handler receives an argument of type UserDrawnHeaderEventArgs containing data related to this event. The following UserDrawnHeaderEventArgs 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.
PaintHeader Determines if the internal painting routines should draw the header 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