Ecom:Group.CategoryField.PresentationType

Version: - string  

Summary

Returns presentation type of the category field.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:Group.CategoryField.PresentationType")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Group.CategoryField.PresentationType"); }

Outputting the template tag

<!--@Ecom:Group.CategoryField.PresentationType-->

Check if string has a value

<!--@If Defined(@Ecom:Group.CategoryField.PresentationType)--> Let's output this tag here: <strong><!--@Ecom:Group.CategoryField.PresentationType--></strong> <!--@EndIf(@Ecom:Group.CategoryField.PresentationType)-->