ProductWorkflowStateChanged:Workflow.Name

Version: - string  

Summary

Returns Name of workflow gotten after editing.

Settings

Related to workflow Name defined in MC-PIM-Workflow-a Workflow.

Examples

Outputting the template tag

@GetString("ProductWorkflowStateChanged:Workflow.Name")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("ProductWorkflowStateChanged:Workflow.Name"); }

Outputting the template tag

<!--@ProductWorkflowStateChanged:Workflow.Name-->

Check if string has a value

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