Ecom:Order.Taxes.Total
Version: - priceSummary
Returns the total tax amount without formatting.
Settings
The value is generated automatically.
Remarks
Includes the option to add price extensions in order to format the amount. See Price extensions (Prefix : Ecom:Order.Taxes.Total).
Examples
Outputting the template tag
@GetPrice("Ecom:Order.Taxes.Total")
Check if tag has a value
@if(!double.IsNullOrWhiteSpace(GetPrice("Ecom:Order.Taxes.Total"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
double storedTag = GetPrice("Ecom:Order.Taxes.Total");
}
Outputting the template tag
<!--@Ecom:Order.Taxes.Total-->
Check if price has a value
<!--@If Defined(@Ecom:Order.Taxes.Total)-->
Let's output this tag here: <strong><!--@Ecom:Order.Taxes.Total--></strong>
<!--@EndIf(@Ecom:Order.Taxes.Total)-->