Ecom:Rma.Comment.NewState

Version: - string  

Summary

Returns name of new state RMA

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:Rma.Comment.NewState")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Ecom:Rma.Comment.NewState-->

Check if string has a value

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