UserManagement:Group.CompanyName

Version: - string  

Summary

NoReturns the company name of the user group.

Settings

The value is based on the company name field for the user group.

(User Management > Group> Group tab > Information panel > Company name)

Examples

Outputting the template tag

@GetString("UserManagement:Group.CompanyName")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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