Ecom:Order.UsedGiftCard.UsedAmountForTheOrder.VATPercentFormatted

Version: - double  

Summary

Returns the VAT percent with formatting, e.g. "25%"

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetDouble("Ecom:Order.UsedGiftCard.UsedAmountForTheOrder.VATPercentFormatted")

Check if tag has a value

@if(!double.IsNullOrWhiteSpace(GetDouble("Ecom:Order.UsedGiftCard.UsedAmountForTheOrder.VATPercentFormatted"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ double storedTag = GetDouble("Ecom:Order.UsedGiftCard.UsedAmountForTheOrder.VATPercentFormatted"); }

Outputting the template tag

<!--@Ecom:Order.UsedGiftCard.UsedAmountForTheOrder.VATPercentFormatted-->

Check if double has a value

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