Ecom:Product.Discount.TotalAmount.VATPercentFormatted

Version: - string  

Summary

Returns the formatted total amount of VAT in percent on the discounts.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:Product.Discount.TotalAmount.VATPercentFormatted")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Ecom:Product.Discount.TotalAmount.VATPercentFormatted"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Product.Discount.TotalAmount.VATPercentFormatted"); }

Outputting the template tag

<!--@Ecom:Product.Discount.TotalAmount.VATPercentFormatted-->

Check if string has a value

<!--@If Defined(@Ecom:Product.Discount.TotalAmount.VATPercentFormatted)--> Let's output this tag here: <strong><!--@Ecom:Product.Discount.TotalAmount.VATPercentFormatted--></strong> <!--@EndIf(@Ecom:Product.Discount.TotalAmount.VATPercentFormatted)-->