QuickPayPaymentWindow.currency
Version: - stringSummary
Returns transaction currency as the 3-letter ISO 4217 alphabetical code.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("QuickPayPaymentWindow.currency")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("QuickPayPaymentWindow.currency"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("QuickPayPaymentWindow.currency");
}
Outputting the template tag
<!--@QuickPayPaymentWindow.currency-->
Check if string has a value
<!--@If Defined(@QuickPayPaymentWindow.currency)-->
Let's output this tag here: <strong><!--@QuickPayPaymentWindow.currency--></strong>
<!--@EndIf(@QuickPayPaymentWindow.currency)-->