Ecom:Rma.State

Version: - string  

Summary

Returns description of RMA state

Settings

Related to description of RMA state  defined in MC-eCommerce-RMAs-States.

Examples

Outputting the template tag

@GetString("Ecom:Rma.State")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Rma.State"); }

Outputting the template tag

<!--@Ecom:Rma.State-->

Check if string has a value

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