bool
FormatProperties
.
TextScientific
Show numbers in scientific notation (e.g. 3.02x10^23).
Example
=
Block
{
TextHeight
:
20pt;
var
number
=
1_294_163;
Paragraph
{
TextScientific
:
false
;
number
};
Paragraph
{
TextScientific
:
true
;
number
};
Paragraph
{
TextScientific
:
true
;
TextDigits
:
2;
number
};
};
//============================================================
1294163
1.294163x10
6
1.29x10
6