ItemCreator:Item.SystemName
Version: - stringSummary
Return the system type of the item type.
Settings
The value is based on the Name field in the item type settings.
(Management Settings - Item types - Item type - Settings - System name)
Examples
Outputting the template tag
@GetString("ItemCreator:Item.SystemName")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("ItemCreator:Item.SystemName"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("ItemCreator:Item.SystemName");
}
Outputting the template tag
<!--@ItemCreator:Item.SystemName-->
Check if string has a value
<!--@If Defined(@ItemCreator:Item.SystemName)-->
Let's output this tag here: <strong><!--@ItemCreator:Item.SystemName--></strong>
<!--@EndIf(@ItemCreator:Item.SystemName)-->