Field.Title
Version: - stringSummary
Returns the field title.
Settings
Not documented
Examples
Outputting the template tag
@GetString("Field.Title")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Field.Title"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Field.Title");
}
Outputting the template tag
<!--@Field.Title-->
Check if string has a value
<!--@If Defined(@Field.Title)-->
Let's output this tag here: <strong><!--@Field.Title--></strong>
<!--@EndIf(@Field.Title)-->