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