Step.Index

Version: - integer  

Summary

Returns the number of the step.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("Step.Index")

Check if tag has a value

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

Assign tag to a value for later use

@{ int storedTag = GetInteger("Step.Index"); }

Outputting the template tag

<!--@Step.Index-->

Check if integer has a value

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