Returns a new selection object from the given collection of documents.

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 BCSelection MakeSelection(
	BCReadOnlyCollection<BCDocument> documents
)
Visual Basic
Public Function MakeSelection ( _
	documents As BCReadOnlyCollection(Of BCDocument) _
) As BCSelection
Visual C++
public:
BCSelection^ MakeSelection(
	BCReadOnlyCollection<BCDocument^>^ documents
)

Parameters

documents
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCReadOnlyCollection<(Of <(<'BCDocument>)>)>
The collection of documents to create the selection from. Typically the collection is returned by the ExecuteQuery(BCSearchQuery) method.

Return Value

The created selection object from the given collection of documents.

See Also