Creates a new workflow interlock condition.

Namespace: BlueCieloECM.InnoCielo.Meridian.Server
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public BCWorkflowInterlockCondition NewWorkflowInterlockCondition(
	string name,
	WorkflowInterlockLocation location,
	bool defaultResult,
	int index
)
Visual Basic
Public Function NewWorkflowInterlockCondition ( _
	name As String, _
	location As WorkflowInterlockLocation, _
	defaultResult As Boolean, _
	index As Integer _
) As BCWorkflowInterlockCondition
Visual C++
public:
BCWorkflowInterlockCondition^ NewWorkflowInterlockCondition(
	String^ name, 
	WorkflowInterlockLocation location, 
	bool defaultResult, 
	int index
)

Parameters

name
Type: System..::..String
The name of the workflow interlock condition.
location
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..WorkflowInterlockLocation
The location of the workflow interlock condition.
defaultResult
Type: System..::..Boolean
The default result of the workflow interlock evaluation.
index
Type: System..::..Int32
The index of the workflow interlock condition.

Return Value

The created workflow interlock condition.

See Also