Initializes a new instance of the CancelCopyWithReferencesEventArgs 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 CancelCopyWithReferencesEventArgs(
	BCDocument document,
	BCDocument oldParent,
	BCDocument newParent,
	BCFolder destination,
	bool cancel
)
Visual Basic
Public Sub New ( _
	document As BCDocument, _
	oldParent As BCDocument, _
	newParent As BCDocument, _
	destination As BCFolder, _
	cancel As Boolean _
)
Visual C++
public:
CancelCopyWithReferencesEventArgs(
	BCDocument^ document, 
	BCDocument^ oldParent, 
	BCDocument^ newParent, 
	BCFolder^ destination, 
	bool cancel
)

Parameters

document
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCDocument
The document the event is raised for.
oldParent
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCDocument
The document (the source) referenced by the child files before the copy is made. nullNothingnullptra null reference (Nothing in Visual Basic) for assembly root document.
newParent
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCDocument
The document (the copy) referenced by the child files after the copy is made. nullNothingnullptra null reference (Nothing in Visual Basic) for assembly root document.
destination
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCFolder
The destination folder to which the object is copied.
cancel
Type: System..::..Boolean
A value indicating whether the operation should be canceled.

See Also