|
|
|
SftMaskCalculator.FracDigits Property |
Defines the number of fractional digits displayed.
Syntax
VB.NET |
Digits = object.FracDigits As Short |
||
VB |
Digits = object.FracDigits As Integer |
||
C#.NET |
short Digits = object.FracDigits; |
||
VC++ |
short Digits = object->FracDigits;
|
||
C |
HRESULT object->get_FracDigits(short* Digits); |
||
Delphi |
Digits := object.FracDigits : Smallint; |
||
VB.NET |
object.FracDigits = Digits As Short |
||
VB |
object.FracDigits = Digits As Integer |
||
C#.NET |
short object.FracDigits = Digits; |
||
VC++ |
short object->FracDigits = Digits;
|
||
C |
HRESULT object->put_FracDigits(short Digits); |
||
Delphi |
object.FracDigits := Digits : Smallint; |
object
A SftMaskCalculator object.
Digits
Defines the number of fractional digits displayed. This value is between -1 and 9. If -1 is specified, the default is 6.
Comments
The FracDigits property defines the number of fractional digits displayed.
The defined number must be smaller or equal to the number of digits used in the numeric input field. If the number is larger, the popup calculator cannot be closed as the calculated value exceeds the size of the numeric input field.