CVCode Property



 
The CVCode property contains the credit card verification code.


Syntax

    [str=] SiteKiosk.Plugins("SiteCash").Devices("CreditCard").
           CreateCardInfo().CVCode
    
Possible Values
    String that specifies or retrieves the card verification code.

    The property is read/write.
Remarks
    None.
Examples
    The following example shows the card number in an alert window.

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

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

Back to top