Vcl.ComCtrls.TTrackBar.PositionToolTip

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property PositionToolTip: TPositionToolTip read FPositionToolTip write SetPositionToolTip default ptNone;

C++

__property TPositionToolTip PositionToolTip = {read=FPositionToolTip, write=SetPositionToolTip, default=0};

Properties

Type Visibility Source Unit Parent
property published
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TTrackBar

Description

Determines the position of the (optional) Tool Tip displaying the position of the track bar.

You can set this property to one of the following values.



Value Meaning

ptNone

No Tool Tip is shown.

ptTop

The Tool Tip appears at the top side of the TrackBar.

ptBottom

The Tool Tip appears at the bottom side of the TrackBar.

ptLeft

The Tool Tip appears at the left side of the TrackBar.

ptRight

The Tool Tip appears at the right side of the TrackBar.



Note: Use ptLeft and ptRight for the vertical Track Bars. Use ptTop and ptBottom for the horizontal Track Bars.

See Also