Option.ID

Version: - integer  

Summary

Returns the ID of the option.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("Option.ID")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Option.ID-->

Check if integer has a value

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