Field.GroupID

Version: - integer  

Summary

An ID of the group with the field (functionality not fully implemented yet).

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("Field.GroupID")

Check if tag has a value

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

Assign tag to a value for later use

@{ int storedTag = GetInteger("Field.GroupID"); }

Outputting the template tag

<!--@Field.GroupID-->

Check if integer has a value

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