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.
이것은 공통 메서드입니다. 이 메서드를 사용하는 객체에 관한 항목 상단에 플랫폼별 구현 제한 사항이 나열됩니다.
이 메서드는 기존 객체를 컬렉션 끝에 추가합니다.
HRESULT Add( I<ElementType>* Value );
void Add( I<ElementType> Value );
Sub Add(Value As I<ElementType>)
Value
[in] 새로 추가된 요소를 포함합니다. ElementType는 컬렉션을 이루는 객체의 유형입니다.
이 메서드에는 특정 반환 값이 없습니다. ABBYY FineReader Engine 함수의 표준 반환 값을 반환합니다.
아래 표에서는 이 메서드를 제공하는 컬렉션과 각 컬렉션에 포함된 요소의 유형을 설명합니다.
for( int i = 0; i < Document.Pages.Count; i++ )
{
if( Document.Pages[i].PageStructureOutOfDate )
{
pageIndices.Add( i );
}
}
이 메서드는 다음 코드 예제에서 사용됩니다: VisualComponents (Win).
컬렉션 사용