Creates a new workflow state with the specified name and type.

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 BCWorkflowState NewWorkflowState(
	string name,
	WorkflowStateKind type
)
Visual Basic
Public Function NewWorkflowState ( _
	name As String, _
	type As WorkflowStateKind _
) As BCWorkflowState
Visual C++
public:
BCWorkflowState^ NewWorkflowState(
	String^ name, 
	WorkflowStateKind type
)

Parameters

name
Type: System..::..String
The name of the workflow state to create.
type
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..WorkflowStateKind
The type of the workflow state to create.

Return Value

The created workflow state.

See Also