ePay.group
Version: - stringSummary
Returns string related to Group field of the payment gateway settings.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("ePay.group")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("ePay.group"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("ePay.group");
}
Outputting the template tag
<!--@ePay.group-->
Check if string has a value
<!--@If Defined(@ePay.group)-->
Let's output this tag here: <strong><!--@ePay.group--></strong>
<!--@EndIf(@ePay.group)-->