SymPlacement Property



 
The SymPlacement property contains the position of the currency symbol.


Syntax

    [long=] CurrencyFormatter.SymPlacement
Possible Values
    Long value that retrieves the symbol position.

    The property is read only.
Remarks
    The position is a value between 0 and 3, the numbering is the same as the enumeration of the possible positions in the SiteKiosk configuration file.
Examples
    The following example shows the position of the currency symbol in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    mycfm = SiteKiosk.Plugins("SiteCash").CreateCurrencyFormatter();
    alert(mycfm.SymPlacement);
    </SCRIPT>
    

Applies to
    SiteKiosk v5.0 (and later versions).

Back to top