Field.DefaultValue

Version: - string  

Summary

Returns the default value for the field.

Settings

The value is based on the Default value field in the Values section for the field.

(Modules > Forms for editors > Form > Edit field > Layout > Css Class)

Examples

Outputting the template tag

@GetString("Field.DefaultValue")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Field.DefaultValue"); }

Outputting the template tag

<!--@Field.DefaultValue-->

Check if string has a value

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