Month Property



 
The Month property contains the month when the card validity ends.


Syntax

    SiteKiosk.Plugins("SiteCash").Devices("CreditCard").Month [=short]
    
Possible Values
    Short value that specifies or retrieves the month.

    The property is read/write.
Remarks
    None.
Examples
    The following example shows the month when the validity ends in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    creditcard = SiteKiosk.Plugins("SiteCash").Devices("CreditCard");
    ccardinfo = creditcard.CreateCardInfo();
    alert(ccardinfo.Month);
    </SCRIPT>
    

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

Back to top