Ecom:RMA.Delivery.Fax

Version: - string  

Summary

Returns value of Fax field for the RMA's delivery, can be based on corresponding field in User Management module. 

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:RMA.Delivery.Fax")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Ecom:RMA.Delivery.Fax"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:RMA.Delivery.Fax"); }

Outputting the template tag

<!--@Ecom:RMA.Delivery.Fax-->

Check if string has a value

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