Ecom:StockStateTotals.TotalVolume

Version: - double  

Summary

Returns the total volume of the specific unit.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetDouble("Ecom:StockStateTotals.TotalVolume")

Check if tag has a value

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

Assign tag to a value for later use

@{ double storedTag = GetDouble("Ecom:StockStateTotals.TotalVolume"); }

Outputting the template tag

<!--@Ecom:StockStateTotals.TotalVolume-->

Check if double has a value

<!--@If Defined(@Ecom:StockStateTotals.TotalVolume)--> Let's output this tag here: <strong><!--@Ecom:StockStateTotals.TotalVolume--></strong> <!--@EndIf(@Ecom:StockStateTotals.TotalVolume)-->