UserManagement:User.Item.Field.First

Version: - string  

Summary

Returns True if the field is first, ca be based on sort order set within the field's group in the item type definition.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("UserManagement:User.Item.Field.First")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("UserManagement:User.Item.Field.First"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("UserManagement:User.Item.Field.First"); }

Outputting the template tag

<!--@UserManagement:User.Item.Field.First-->

Check if string has a value

<!--@If Defined(@UserManagement:User.Item.Field.First)--> Let's output this tag here: <strong><!--@UserManagement:User.Item.Field.First--></strong> <!--@EndIf(@UserManagement:User.Item.Field.First)-->