FacetGroup.Description

Version: - string  

Summary

Returns description of the facet group. 

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("FacetGroup.Description")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("FacetGroup.Description"); }

Outputting the template tag

<!--@FacetGroup.Description-->

Check if string has a value

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