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