Field.ID

Version: - integer  

Summary

Returns the ID of the field.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("Field.ID")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Field.ID-->

Check if integer has a value

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