Field.Active

Version: - boolean  

Summary

Returns True if the field is active - otherwise False.

Settings

The value is generated automatically but based on the selection in the Active field in the field settings.

(Modules > Forms for editors > Form > Edit field > Settings > Active)

Examples

Outputting the template tag

@GetBoolean("Field.Active")

Check if tag has a value

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

Assign tag to a value for later use

@{ bool storedTag = GetBoolean("Field.Active"); }

Outputting the template tag

<!--@Field.Active-->

Check if boolean has a value

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