UserManagement:User.Item.Field.Name

Version: - boolean  

Summary

Returns True if the user item field is the last in the list.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetBoolean("UserManagement:User.Item.Field.Name")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if boolean has a value

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