Ecom:Order.GiftCard.Amount

Version: - string  

Summary

Returns amount of the gift card

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:Order.GiftCard.Amount")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Ecom:Order.GiftCard.Amount"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Order.GiftCard.Amount"); }

Outputting the template tag

<!--@Ecom:Order.GiftCard.Amount-->

Check if string has a value

<!--@If Defined(@Ecom:Order.GiftCard.Amount)--> Let's output this tag here: <strong><!--@Ecom:Order.GiftCard.Amount--></strong> <!--@EndIf(@Ecom:Order.GiftCard.Amount)-->