CheckoutHandler:CancelMessage
Version: - stringSummary
Returns text of cancel message the checkout handler.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("CheckoutHandler:CancelMessage")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("CheckoutHandler:CancelMessage"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("CheckoutHandler:CancelMessage");
}
Outputting the template tag
<!--@CheckoutHandler:CancelMessage-->
Check if string has a value
<!--@If Defined(@CheckoutHandler:CancelMessage)-->
Let's output this tag here: <strong><!--@CheckoutHandler:CancelMessage--></strong>
<!--@EndIf(@CheckoutHandler:CancelMessage)-->