Item.Area.[FieldSystemName].Name

Version: - string  

Summary

Returns the name of the website item field.

 

  •  

Settings

The value is generated automatically.

Remarks

Based on the item field for the item type that is used for the website.

Examples

Outputting the template tag

@GetString("Item.Area.[FieldSystemName].Name")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Item.Area.[FieldSystemName].Name"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Item.Area.[FieldSystemName].Name"); }

Outputting the template tag

<!--@Item.Area.[FieldSystemName].Name-->

Check if string has a value

<!--@If Defined(@Item.Area.[FieldSystemName].Name)--> Let's output this tag here: <strong><!--@Item.Area.[FieldSystemName].Name--></strong> <!--@EndIf(@Item.Area.[FieldSystemName].Name)-->