Initializes a new instance of the CancelWorkflowTransitionExecuteEventArgs class.

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

Syntax

C#
public CancelWorkflowTransitionExecuteEventArgs(
	BCDocument document,
	BCWorkflowTransition transition,
	IList<string> todoPersons,
	IList<string> managers,
	string comment,
	bool cancel
)
Visual Basic
Public Sub New ( _
	document As BCDocument, _
	transition As BCWorkflowTransition, _
	todoPersons As IList(Of String), _
	managers As IList(Of String), _
	comment As String, _
	cancel As Boolean _
)
Visual C++
public:
CancelWorkflowTransitionExecuteEventArgs(
	BCDocument^ document, 
	BCWorkflowTransition^ transition, 
	IList<String^>^ todoPersons, 
	IList<String^>^ managers, 
	String^ comment, 
	bool cancel
)

Parameters

document
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCDocument
The document the event is raised for.
transition
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCWorkflowTransition
The transition of the workflow.
todoPersons
Type: System.Collections.Generic..::..IList<(Of <(<'String>)>)>
The collection of user names of to-do persons.
managers
Type: System.Collections.Generic..::..IList<(Of <(<'String>)>)>
The collection of user names of managers.
comment
Type: System..::..String
The text message of a comment that will be added to the document log.
cancel
Type: System..::..Boolean
A value indicating whether the operation should be canceled.

See Also