Vcl.ComCtrls.TCustomUpDown.Thousands

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Thousands: Boolean read FThousands write SetThousands default True;

C++

__property bool Thousands = {read=FThousands, write=SetThousands, default=1};

Properties

Type Visibility Source Unit Parent
property protected
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TCustomUpDown

Description

Determines whether a thousands separator appears between every three digits of a decimal string.

Use Thousands to control the formatting of the text of the companion control of the up-down control. If Thousands is true, a separator appears between every three digits. The numeric value that is displayed by the companion control is given by the Position property.

See Also