[This is preliminary documentation and is subject to change.]

Inserts a new workflow definition into the system.

Namespace:  OfficeClip.DBLayer.Framework
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public int InsertWorkflowDefinition(
	WorkflowDefinitionInfo wfdi
)
Visual Basic (Declaration)
Public Function InsertWorkflowDefinition ( _
	wfdi As WorkflowDefinitionInfo _
) As Integer
Visual C++
public:
int InsertWorkflowDefinition(
	WorkflowDefinitionInfo^ wfdi
)

Parameters

wfdi
Type: OfficeClip.BusinessLayer.Framework.Workflow..::.WorkflowDefinitionInfo
Instance of the workflowDefinitionInfo object containing all the details of the workflow. WorkflowDefinitionInfo

Return Value

Id of the newly created workflow definition when successful, -1 in case of an error.

See Also