Ecom:RMA:OrderLine.Modified

Version: - date  

Summary

Returns date modification of the orderline.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetDate("Ecom:RMA:OrderLine.Modified")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetDate("Ecom:RMA:OrderLine.Modified"); }

Outputting the template tag

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

Check if date has a value

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