Ecom:FieldDisplayGroup.Field.TypeName

Version: 9.7.0 string  

Summary

Returns Type of the field.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:FieldDisplayGroup.Field.TypeName")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:FieldDisplayGroup.Field.TypeName"); }

Outputting the template tag

<!--@Ecom:FieldDisplayGroup.Field.TypeName-->

Check if string has a value

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