ItemCreator:Edit.Form.End

Version: - string  

Summary

Returns the end code for the item creator form.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("ItemCreator:Edit.Form.End")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("ItemCreator:Edit.Form.End"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("ItemCreator:Edit.Form.End"); }

Outputting the template tag

<!--@ItemCreator:Edit.Form.End-->

Check if string has a value

<!--@If Defined(@ItemCreator:Edit.Form.End)--> Let's output this tag here: <strong><!--@ItemCreator:Edit.Form.End--></strong> <!--@EndIf(@ItemCreator:Edit.Form.End)-->