Ecom:Order.UsedGiftCard.InitialAmount.IsInformative

Version: - boolean  

Summary

Returns True if it is the informative

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetBoolean("Ecom:Order.UsedGiftCard.InitialAmount.IsInformative")

Check if tag has a value

@if(!bool.IsNullOrWhiteSpace(GetBoolean("Ecom:Order.UsedGiftCard.InitialAmount.IsInformative"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ bool storedTag = GetBoolean("Ecom:Order.UsedGiftCard.InitialAmount.IsInformative"); }

Outputting the template tag

<!--@Ecom:Order.UsedGiftCard.InitialAmount.IsInformative-->

Check if boolean has a value

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