Category.SystemName

Version: 9.7.0 string  

Summary

Returns Image category system name.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Category.SystemName")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Category.SystemName-->

Check if string has a value

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