FacetGroup.Name

Version: - string  

Summary

Returns name of the facet group.

Settings

The value is based on Name field in Repositories>Repository>Facents.

Examples

Outputting the template tag

@GetString("FacetGroup.Name")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@FacetGroup.Name-->

Check if string has a value

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