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

# Value Property of the DocumentInformationDictionary Object

This property provides access to the value of the document information dictionary element by its name.

## Syntax

### C++

```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
);
```

### Visual Basic .NET

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

## Parameters

Name

\[in] This variable contains the name of the element in the document information dictionary.

Result

\[out, retval] This variable contains the value which corresponds to the name.

Value

\[in] This variable contains a new value of the element in the document information dictionary.

## Return values

This property has no specific return values. It returns the [standard return values of ABBYY FineReader Engine functions](/fine-reader/engine/api-reference/return-codes).

## See also

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

[Working with Properties](/fine-reader/engine/guided-tour/advanced-techniques/programming-aspects/working-with-properties)
