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

This event fires before each tick line or value string is displaying within the track.

Syntax

Visual Basic (Declaration) 
Public Event ValuePoint As dbiSlide.EventValuePointHandler
C# 
public event dbiSlide.EventValuePointHandler ValuePoint

Event Data

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

PropertyDescription
DivisionValue Determines the current division tick being drawn.
Font Determines the Font used to render ruler text in the display.
ForeColor Determines the color used to paint the tick line or the text in the track.
isRulerText Determines if the current value to display is text in the ruler track, or a tick line.
LineWidth Determines the thickness of the tick line being rendered.
Text Determines the string value to display at a major increment in the ruler track.
Value Determines the current major increment being rendered.

Remarks

This event will only fire when TrackType Property is set to either Ruler or Marks

Requirements

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

See Also