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