Field.IsButton

Version: - boolean  

Summary

Returns True if the field is a button (Send or Reset) - otherwise False.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetBoolean("Field.IsButton")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Field.IsButton-->

Check if boolean has a value

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