QuickPayPaymentWindow.autocapture

Version: - string  

Summary

Returns current state of Auto capture check-box in the payment gateway settings. If set to 1, the transaction will be captured automatically

 
 

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("QuickPayPaymentWindow.autocapture")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("QuickPayPaymentWindow.autocapture"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("QuickPayPaymentWindow.autocapture"); }

Outputting the template tag

<!--@QuickPayPaymentWindow.autocapture-->

Check if string has a value

<!--@If Defined(@QuickPayPaymentWindow.autocapture)--> Let's output this tag here: <strong><!--@QuickPayPaymentWindow.autocapture--></strong> <!--@EndIf(@QuickPayPaymentWindow.autocapture)-->