Ecom:Product.CategoryField.PresentationType

Version: - integer  

Summary

Returns the display type for the chosen list type that's used for this field.

Settings

The value is generated automatically.

Remarks

For lists the value is:

  1. Radio button list
  2. Dropdown list
  3. Multiselect list
  4. Checkbox list

Examples

Outputting the template tag

@GetInteger("Ecom:Product.CategoryField.PresentationType")

Check if tag has a value

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

Assign tag to a value for later use

@{ int storedTag = GetInteger("Ecom:Product.CategoryField.PresentationType"); }

Outputting the template tag

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

Check if integer has a value

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