ItemCreator:Edit.Item.[ItemFieldSystemName].EditorType

Version: - string  

Summary

Returns the type of the item type.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("ItemCreator:Edit.Item.[ItemFieldSystemName].EditorType")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("ItemCreator:Edit.Item.[ItemFieldSystemName].EditorType"); }

Outputting the template tag

<!--@ItemCreator:Edit.Item.[ItemFieldSystemName].EditorType-->

Check if string has a value

<!--@If Defined(@ItemCreator:Edit.Item.[ItemFieldSystemName].EditorType)--> Let's output this tag here: <strong><!--@ItemCreator:Edit.Item.[ItemFieldSystemName].EditorType--></strong> <!--@EndIf(@ItemCreator:Edit.Item.[ItemFieldSystemName].EditorType)-->