PriceMin

Version: 9.9.0 string  

Summary

The lowest price.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("PriceMin")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@PriceMin-->

Check if string has a value

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