Step.Name

Version: - string  

Summary

Returns the step name.

Settings

The value is generated automatically.

Remarks

The tag can be used in a form input field as value.

Examples

Outputting the template tag

@GetString("Step.Name")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Step.Name-->

Check if string has a value

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