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