Step.Number

Version: - string  

Summary

Returns position number of the step.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Step.Number")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Step.Number-->

Check if string has a value

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