Facet.OptionWithResultCount

Version: - integer  

Summary

Returns result count of of matching elements.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("Facet.OptionWithResultCount")

Check if tag has a value

@if(!int.IsNullOrWhiteSpace(GetInteger("Facet.OptionWithResultCount"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ int storedTag = GetInteger("Facet.OptionWithResultCount"); }

Outputting the template tag

<!--@Facet.OptionWithResultCount-->

Check if integer has a value

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