CurDigits Property
The CurDigits property contains the number of digits shown after the comma.
Syntax
[long=] CurrencyFormatter.CurDigits
|
Possible Values
Long value that retrieves the number of digits.
|
The property is read only.
Remarks
Examples
The following example shows the number of digits to display after the comma.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
mycfm = SiteKiosk.Plugins("SiteCash").CreateCurrencyFormatter();
alert(mycfm.CurDigits);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top