> ## 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.

# Dictionary オブジェクトの EnumWords メソッド

> ABBYY FineReader Engine API における Dictionary オブジェクトの EnumWords メソッド — 辞書内の単語を順に列挙するための EnumDictionaryWords 列挙子を返します。辞書に対する後続の変更は列挙子に影響しません。

このメソッドは、辞書内の単語を順に列挙できる [EnumDictionaryWords](/ja/fine-reader/engine/api-reference/language-related-objects/enumdictionarywords) 型のオブジェクトを返します。このメソッドは辞書のコピーを作成するため、EnumDictionaryWords オブジェクトを取得した後に辞書に対して行われた変更は、そのオブジェクトには反映されません。つまり、EnumDictionaryWords オブジェクトの取得後に辞書へ単語を追加しても、その単語は列挙の対象には含まれません。

<div id="syntax">
  ## 構文
</div>

<div id="c">
  ### C++
</div>

```cpp theme={null}
HRESULT EnumWords( IEnumDictionaryWords** Result );
```

### C\#

```csharp theme={null}
IEnumDictionaryWords EnumWords();
```

<div id="visual-basic-net">
  ### Visual Basic .NET
</div>

```vb theme={null}
Function EnumWords() As IEnumDictionaryWords
```

<div id="parameters">
  ## パラメーター
</div>

Result

\[out, retval] 返された [EnumDictionaryWords](/ja/fine-reader/engine/api-reference/language-related-objects/enumdictionarywords) オブジェクトへのインターフェイスポインターを受け取る IEnumDictionaryWords\* ポインター変数へのポインターです。NULL であってはなりません。

<div id="return-values">
  ## 戻り値
</div>

このメソッドに固有の戻り値はありません。返されるのは、[ABBYY FineReader Engine 関数の標準的な戻り値](/ja/fine-reader/engine/api-reference/return-codes)です。

<div id="see-also">
  ## 関連項目
</div>

[Dictionary](/ja/fine-reader/engine/api-reference/language-related-objects/dictionary)
