Klarna.Flexible.Description

Version: - string  

Summary

Returns description defined to flexible payment.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Klarna.Flexible.Description")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Klarna.Flexible.Description"); }

Outputting the template tag

<!--@Klarna.Flexible.Description-->

Check if string has a value

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