Ecom:RMA:OrderLine.Weight

Version: - double  

Summary

Returns the orderline Weight.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetDouble("Ecom:RMA:OrderLine.Weight")

Check if tag has a value

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

Assign tag to a value for later use

@{ double storedTag = GetDouble("Ecom:RMA:OrderLine.Weight"); }

Outputting the template tag

<!--@Ecom:RMA:OrderLine.Weight-->

Check if double has a value

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