Skip to main content
This object represents a collection of int type variables. It serves as a storage to pass various sets of parameters into those ABBYY FineReader Engine functions that require them. It may also be return value of ABBYY FineReader Engine methods.
  • The indexing of ABBYY FineReader Engine collections starts with 0.
  • The foreach statement in C# (for each in Visual Basic .NET) can be used to manipulate the collection.

Properties

NameTypeDescription
ApplicationEngine, read-onlyReturns the Engine object.
Countint, read-onlyStores the number of elements in the collection.
ElementintProvides access to a single element of the collection.

Methods

NameDescription
AddAdds the specified integer value at the end of the collection.
CopyFromInitializes properties of the current object with values of similar properties of another object.
DeleteAllRemoves all the elements from the collection.
DeleteAtRemoves an element from the collection.
InsertAtInserts the specified integer value into the specified position in the collection.
ItemProvides access to a single element of the collection.

Output parameter

This collection is the output parameter of the following methods and properties:

Input parameter

This collection is the input parameter of the following methods and properties: The input parameters below are specific to Visual Components:

Samples

 
for( int i = 0; i < Document.Pages.Count; i++ )
{
 if( Document.Pages[i].PageStructureOutOfDate )
 {
  pageIndices.Add( i );
 }
}
The object is used in the following code samples:

See also

Working with Collections Working with Properties