Ecom:Cart.Shippingmethod.PriceOverMaxWeight.Clean

Version: - double  

Summary

Returns price amount applied the max weight over is double type..

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetDouble("Ecom:Cart.Shippingmethod.PriceOverMaxWeight.Clean")

Check if tag has a value

@if(!double.IsNullOrWhiteSpace(GetDouble("Ecom:Cart.Shippingmethod.PriceOverMaxWeight.Clean"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ double storedTag = GetDouble("Ecom:Cart.Shippingmethod.PriceOverMaxWeight.Clean"); }

Outputting the template tag

<!--@Ecom:Cart.Shippingmethod.PriceOverMaxWeight.Clean-->

Check if double has a value

<!--@If Defined(@Ecom:Cart.Shippingmethod.PriceOverMaxWeight.Clean)--> Let's output this tag here: <strong><!--@Ecom:Cart.Shippingmethod.PriceOverMaxWeight.Clean--></strong> <!--@EndIf(@Ecom:Cart.Shippingmethod.PriceOverMaxWeight.Clean)-->