Defines collection functionality common only to sets. A set is a collection of independent objects, the elements of which are unordered and unique. A set may not be directly updated. You can enumerate a set one page at a time (instead of one object or one row at a time).

Namespace:  FileNet.Api.Collection
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Public Interface IEngineSet _
	Implements IEngineCollection, IEnumerable, ICloneable
C#
public interface IEngineSet : IEngineCollection, 
	IEnumerable, ICloneable
Visual C++
public interface class IEngineSet : IEngineCollection, 
	IEnumerable, ICloneable
JavaScript
FileNet.Api.Collection.IEngineSet = function();
FileNet.Api.Collection.IEngineSet.createInterface('FileNet.Api.Collection.IEngineSet');

ToggleSee Also