StyleTextSize

Version: - string  

Summary

Returns size of style text.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("StyleTextSize")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("StyleTextSize"); }

Outputting the template tag

<!--@StyleTextSize-->

Check if string has a value

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