Group.ID

Version: - integer  

Summary

Returns the ID of the user group.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("Group.ID")

Check if tag has a value

@if(!int.IsNullOrWhiteSpace(GetInteger("Group.ID"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ int storedTag = GetInteger("Group.ID"); }

Outputting the template tag

<!--@Group.ID-->

Check if integer has a value

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