UserManagement:User.SelectableGroup.IsSelected

Version: - string  

Summary

Returns True if the selected group checkbox is selected.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("UserManagement:User.SelectableGroup.IsSelected")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("UserManagement:User.SelectableGroup.IsSelected"); }

Outputting the template tag

<!--@UserManagement:User.SelectableGroup.IsSelected-->

Check if string has a value

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