UserManagement:Group.Address

Version: - string  

Summary

Returns the address of the user group.

Settings

The value is based on the address field for the user group.

(User Management > Group> Group tab > Information panel > Address)

Examples

Outputting the template tag

@GetString("UserManagement:Group.Address")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("UserManagement:Group.Address"); }

Outputting the template tag

<!--@UserManagement:Group.Address-->

Check if string has a value

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