Ecom:Order.GiftCard.Amount.PriceWithoutVAT

Version: - double  

Summary

Returns the price excluding VAT, e.g. "800,00"

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetDouble("Ecom:Order.GiftCard.Amount.PriceWithoutVAT")

Check if tag has a value

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

Assign tag to a value for later use

@{ double storedTag = GetDouble("Ecom:Order.GiftCard.Amount.PriceWithoutVAT"); }

Outputting the template tag

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

Check if double has a value

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