ProductWorkflowStateChanged:PreviousState.WorkflowId

Version: - integer  

Summary

Returns workflow ID of previous state. 

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("ProductWorkflowStateChanged:PreviousState.WorkflowId")

Check if tag has a value

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

Assign tag to a value for later use

@{ int storedTag = GetInteger("ProductWorkflowStateChanged:PreviousState.WorkflowId"); }

Outputting the template tag

<!--@ProductWorkflowStateChanged:PreviousState.WorkflowId-->

Check if integer has a value

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