Step.Past

Version: - string  

Summary

Returns number of past step.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Step.Past")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Step.Past"); }

Outputting the template tag

<!--@Step.Past-->

Check if string has a value

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