Step.Current

Version: - string  

Summary

Returns True if the step is current.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Step.Current")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Step.Current-->

Check if string has a value

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