dbicSlide Send comments on this topic.
UserDrawnAdvancedTip Event
See Also 
dbicSlide Assembly > Dbi.WinControl.Slide Namespace > dbiSlide Class : UserDrawnAdvancedTip Event

This event fires just before an advanced tip is displayed for the control.

Syntax

Visual Basic (Declaration) 
Public Event UserDrawnAdvancedTip As dbiSlide.EventUserDrawnAdvancedTipHandler
C# 
public event dbiSlide.EventUserDrawnAdvancedTipHandler UserDrawnAdvancedTip

Event Data

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

PropertyDescription
Font Returns the Font used to calculate the dimensions of the current tool tip.
Graphics

A handle to the Graphics object responsible for the drawing.

PaintTip Determines if the default painting routines will be used or not.
Rect

The rectangle representing the size and location of the tool tip.

Text Returns the text to be displayed within the current tool tip.

Remarks

This event can be used to override the painting routines of the tip, allowing the developer maximum control over th drawing and display of the tip.

Requirements

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

See Also