ClustererGridSize

Version: - integer  

Summary

Returns size of the clusterer grid.

Settings

Not documented

Examples

Outputting the template tag

@GetInteger("ClustererGridSize")

Check if tag has a value

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

Assign tag to a value for later use

@{ int storedTag = GetInteger("ClustererGridSize"); }

Outputting the template tag

<!--@ClustererGridSize-->

Check if integer has a value

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