Category.IconInfo

Version: 9.7.0 string  

Summary

Returns icon info for the Image category.

Settings

The value is related to icon info defined within Settings-PIM-Image categories-an Image category-Icon.

Examples

Outputting the template tag

@GetString("Category.IconInfo")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Category.IconInfo"); }

Outputting the template tag

<!--@Category.IconInfo-->

Check if string has a value

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