PublicAPI.Processes.WorkflowProcess.ClearSwimlane ELMA API Documentation
Clear swimlane
 
 
Syntax

public void ClearSwimlane(
	WorkflowInstance instance,
	string swimlaneName
)

Parameters

instance
Type: WorkflowInstance
Process instance. Object. Access path: PublicAPI.Processes.WorkflowInstance
swimlaneName
Type: System String
Name of the swimlane, which needs to be cleared
Examples

//load the process instance by ID 
var instance = PublicAPI.Processes.WorkflowInstance.Load(3);
//name of the swimlane, which needs to be cleared 
var swimlaneName = "Swimlane name";

//clear the swimlane
PublicAPI.Processes.WorkflowProcess.ClearSwimlane(instance, swimlaneName);
See Also