UserManagement:Group.Item.Field.Name

Version: - string  

Summary

Returns name of the feild, based on value of Name field in the field definition.

Settings

Not documented

Examples

Outputting the template tag

@GetString("UserManagement:Group.Item.Field.Name")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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