UserManagement:User.SelectableGroup.ID
Version: - integerSummary
Returns the ID of the selectable user group.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetInteger("UserManagement:User.SelectableGroup.ID")
Check if tag has a value
@if(!int.IsNullOrWhiteSpace(GetInteger("UserManagement:User.SelectableGroup.ID"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
int storedTag = GetInteger("UserManagement:User.SelectableGroup.ID");
}
Outputting the template tag
<!--@UserManagement:User.SelectableGroup.ID-->
Check if integer has a value
<!--@If Defined(@UserManagement:User.SelectableGroup.ID)-->
Let's output this tag here: <strong><!--@UserManagement:User.SelectableGroup.ID--></strong>
<!--@EndIf(@UserManagement:User.SelectableGroup.ID)-->