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

# DeleteWord Method of the Dictionary Object

This method deletes a word from the dictionary.

## Syntax

### C++

```cpp theme={null}
HRESULT DeleteWord( BSTR Word );
```

### C\#

```csharp theme={null}
void DeleteWord( string Word );
```

### Visual Basic .NET

```vb theme={null}
Sub DeleteWord(Word As String)
```

## Parameters

Word

\[in] This parameter contains the word that is to be deleted. If the deleted word is not present in the dictionary, no error is returned.

## Return values

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

## Remarks

To delete a group of words or all words from the dictionary, use the [IDictionary::DeleteWords](/fine-reader/engine/api-reference/language-related-objects/dictionary/deletewords-method) or [IDictionary::DeleteAllWords](/fine-reader/engine/api-reference/language-related-objects/dictionary/deleteallwords-method) method, respectively.

## See also

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

[DeleteWords](/fine-reader/engine/api-reference/language-related-objects/dictionary/deletewords-method)

[DeleteAllWords](/fine-reader/engine/api-reference/language-related-objects/dictionary/deleteallwords-method)
