UserManagement:Group.Item.Field.First

Version: - boolean  

Summary

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

Settings

Not documented

Examples

Outputting the template tag

@GetBoolean("UserManagement:Group.Item.Field.First")

Check if tag has a value

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

Assign tag to a value for later use

@{ bool storedTag = GetBoolean("UserManagement:Group.Item.Field.First"); }

Outputting the template tag

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

Check if boolean has a value

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