Ecom:Rma.StateName
Version: - stringSummary
Returns name of RMA state
Settings
Related to name of RMA state defined in MC-eCommerce-RMAs-States.
Examples
Outputting the template tag
@GetString("Ecom:Rma.StateName")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Ecom:Rma.StateName"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Ecom:Rma.StateName");
}
Outputting the template tag
<!--@Ecom:Rma.StateName-->
Check if string has a value
<!--@If Defined(@Ecom:Rma.StateName)-->
Let's output this tag here: <strong><!--@Ecom:Rma.StateName--></strong>
<!--@EndIf(@Ecom:Rma.StateName)-->