Copies multiple documents/folders into the folder.

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

Syntax

C#
public void CopyDocuments(
	IWin32Window owner,
	IEnumerable<string> documentIDs
)
Visual Basic
Public Sub CopyDocuments ( _
	owner As IWin32Window, _
	documentIDs As IEnumerable(Of String) _
)
Visual C++
public:
void CopyDocuments(
	IWin32Window^ owner, 
	IEnumerable<String^>^ documentIDs
)

Parameters

owner
Type: System.Windows.Forms..::..IWin32Window
Any object that implements the IWin32Window interface that represents the top-level window that will own the modal dialog box.
documentIDs
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'String>)>)>
The collection of document ID property values to copy.

Remarks

New document wizards are also displayed if there are custom wizard pages for a selected document type.

Selected folders are imported recursively depending on options defined with SetOptions(ItemOptionFlags) method.

See Also