Form.Field.[FieldSystemName].IsInput

Version: - boolean  

Summary

Returns True if the field is an input field - otherwise False.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetBoolean("Form.Field.[FieldSystemName].IsInput")

Check if tag has a value

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

Assign tag to a value for later use

@{ bool storedTag = GetBoolean("Form.Field.[FieldSystemName].IsInput"); }

Outputting the template tag

<!--@Form.Field.[FieldSystemName].IsInput-->

Check if boolean has a value

<!--@If Defined(@Form.Field.[FieldSystemName].IsInput)--> Let's output this tag here: <strong><!--@Form.Field.[FieldSystemName].IsInput--></strong> <!--@EndIf(@Form.Field.[FieldSystemName].IsInput)-->