Skip to main content
This is a common method. Any platform-specific implementation limitations will be listed in the topics for the objects using this method.
This method provides access to a single element of a FineReader Engine collection. Each FineReader Engine collection uses this method.

Syntax

C++

HRESULT Item(
  int              Index,
  I<ElementType>** Result
);

C#

I<ElementType> Item( int Index );

Visual Basic .NET

Function Item(Index As Integer) As I<ElementType>

Parameters

Index [in] This variable contains the index of the element that is accessed via this method. It must be in the range from 0 to the Number of elements - 1, where the number of elements may be received from the Count property of the same collection. Result [out, retval] A variable of type I<ElementType>* that receives a pointer to the interface of the collection element. ElementType is the type of the objects forming the collection.

Return values

This method has no specific return values. It returns the standard return values of ABBYY FineReader Engine functions.

Remarks

The table below describes the collections that provide this method and the types of elements in the collections:

See also

Element Working with Collections