Link Search Menu Expand Document

NumberEdit.Format Event


Specifies the format of the edit string.

Specified Character Example Description
@ ”" Max "@”
Display in the specified position in the default format.
“TEXT” “9990"円"“
The characters enclosed in “” are displayed at the specified position. It cannot be specified at the position that separates the sequence of numbers.
9 “999”
The number that describes 9 indicates the number of digits, and the leading 0 is deleted. If specified after the decimal point, it means only the number of digits and zero suppression is not performed.
0 “0999”
“9990”
Leading 0 is 0 .
$ “$9990”
Add a $ mark at the beginning .
MI “999MI”
“MI999”
For negative numbers, a minus sign ( - ) is displayed at the specified position (right or left).
S “S9990”
“9990S”
The sign is displayed at the specified position (right or left).
D or
. (Period)
“99D99”
“99.99”
Displays the decimal point at the specified position. If you do not specify the number of digits after the decimal point, the last digit within the valid accuracy range is displayed.
L “L9990”
“9990L”
Displays the local currency symbol at the specified position (right or left).
, (Comma) “999,990”
Displays a comma every 3 digits.
”” ( Space ) ” 99”
The number that describes the space indicates the number of digits, and the leading 0 is replaced with a blank character (space). If it is specified after the decimal point, it is invalid and has no meaning.
N “990N”
Does not display empty data.
Added since ImageImage