dbicDial Send comments on this topic.
UserDrawnMarker Event
See Also 
dbicDial Assembly > Dbi.WinControl.Dial Namespace > dbiDial Class : UserDrawnMarker Event

Event fired before the dial marker is drawn, allowing the developer to customize the display.

Syntax

Visual Basic (Declaration) 
Public Event UserDrawnMarker As dbiDial.EventUserDrawnMarkerHandler
C# 
public event dbiDial.EventUserDrawnMarkerHandler UserDrawnMarker

Event Data

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

PropertyDescription
Graphics A handle to the graphics object responsible for the drawing.
MouseDown Determines if the mouse is currently pressed down while interacting with the control.
PaintMarker Determines if the internal routines should paint the dial marker.
Rect A rectangle representing the area being painted in the control.

Requirements

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

See Also