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

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

Syntax

Visual Basic (Declaration) 
Public Event UserDrawnBody As dbiTips.EventUserDrawnBodyHandler
C# 
public event dbiTips.EventUserDrawnBodyHandler UserDrawnBody

Event Data

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