メインコンテンツへスキップ

Documentation Index

Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt

Use this file to discover all available pages before exploring further.

これは共通メソッドです。このメソッドを使用するオブジェクトにプラットフォーム固有の実装上の制限がある場合は、各トピックの冒頭に記載されます。
このメソッドは、既存のオブジェクトをコレクションの末尾に追加します。

構文

C++

HRESULT Add( I<ElementType>* Value );

C#

void Add( I<ElementType> Value );

Visual Basic .NET

Sub Add(Value As I<ElementType>)

パラメーター

Value [in] 新しく追加する要素を含みます。ElementType は、コレクションを構成するオブジェクトの型です。

戻り値

このメソッドには特定の戻り値はありません。代わりに、ABBYY FineReader Engine 関数の標準的な戻り値を返します。

備考

次のテーブルでは、このメソッドを提供するコレクションと、各コレクションに含まれる要素の型について説明します。
コレクションの型要素の型
ClassificationObjectsClassificationObject
IntsCollectionint
OfficeConverters

注: このコレクションは Windows および Linux で実装されています。
OfficeConverterTypeEnum
RegionsCollectionRegion
SpellReplacementCollection

注: このコレクションは Windows で使用できます。
SpellReplacement
StringsCollectionBSTR
TrainingImagesCollectionTrainingImage

サンプル

 
for( int i = 0; i < Document.Pages.Count; i++ )
{
 if( Document.Pages[i].PageStructureOutOfDate )
 {
  pageIndices.Add( i );
 }
}
このメソッドは、次のコード サンプルで使用されています。VisualComponents (Win)。

関連項目

コレクションの操作