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

# DocumentInformationDictionary オブジェクトの Value プロパティ

> ABBYY FineReader Engine API における DocumentInformationDictionary オブジェクトの Value プロパティ — キー名を使って辞書項目の値にアクセスします。

このプロパティでは、名前で指定した 文書情報辞書 要素の値にアクセスできます。

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

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

```cpp theme={null}
HRESULT get_Value(
   BSTR  Name,
   BSTR* Result
);
HRESULT put_Value(
   BSTR Name,
   BSTR Value
);
```

### C\#

```csharp theme={null}
string get_Value( string Name );
void set_Value(
   string Name,
   string Value
);
```

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

```vb theme={null}
Property Value(Name As String) As String
```

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

Name

\[in] この変数には、文書情報辞書内の要素名が格納されます。

Result

\[out, retval] この変数には、名前に対応する値が格納されます。

Value

\[in] この変数には、文書情報辞書内の要素の新しい値が格納されます。

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

このプロパティに固有の戻り値はありません。[ABBYY FineReader Engine 関数の標準戻り値](/ja/fine-reader/engine/api-reference/return-codes)が返されます。

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

[DocumentInformationDictionary](/ja/fine-reader/engine/api-reference/document-related-objects/documentinformationdictionary)

[Properties の操作](/ja/fine-reader/engine/guided-tour/advanced-techniques/programming-aspects/working-with-properties)
