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")
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@QuickPayPaymentWindow.autocapture-->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Check if string has a value

<!--@If Defined(@QuickPayPaymentWindow.autocapture)-->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX