ItemPublisher:Edit.Form

Version: - string  

Summary

Returns the form that is used to edit the item.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("ItemPublisher:Edit.Form")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@ItemPublisher:Edit.Form-->

Check if string has a value

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