Field.Option.ParentSystemname

Version: - integer  

Summary

Returns the ID of the form field that the options are created for.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("Field.Option.ParentSystemname")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Field.Option.ParentSystemname-->

Check if integer has a value

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