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