mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-03 17:36:15 +02:00
SpinEx: add some comments to explain the different TDisplayMode's.
git-svn-id: trunk@63722 -
This commit is contained in:
parent
37cf9e0ed8
commit
292b94d79c
@ -170,7 +170,10 @@ type
|
||||
|
||||
{ TCustomFloatSpinEditEx }
|
||||
|
||||
TDisplayMode = (dmFixed, dmScientific, dmAuto, dmAutoZeroFixed);
|
||||
TDisplayMode = (dmFixed, // always fixed e.g. 1.23
|
||||
dmScientific, // always scientific e.g 1.23E+10
|
||||
dmAuto, // fixed if Abs(Value) < 10^ExponentialFormatLimitPos and > 10^ExponentialFormatLimitNeg, otherwise scientific
|
||||
dmAutoZeroFixed); // like dmAuto, but zero will be displayed as if dmFixed
|
||||
|
||||
TCustomFloatSpinEditEx = class(specialize TSpinEditExBase<Double>)
|
||||
private const
|
||||
|
Loading…
Reference in New Issue
Block a user