Klarna.Flexible.InvoiceFee
Version: - stringSummary
Returns an amount of invoice fee in the local currency.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("Klarna.Flexible.InvoiceFee")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Klarna.Flexible.InvoiceFee"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Klarna.Flexible.InvoiceFee");
}
Outputting the template tag
<!--@Klarna.Flexible.InvoiceFee-->
Check if string has a value
<!--@If Defined(@Klarna.Flexible.InvoiceFee)-->
Let's output this tag here: <strong><!--@Klarna.Flexible.InvoiceFee--></strong>
<!--@EndIf(@Klarna.Flexible.InvoiceFee)-->