RichTextBox.GetSpellingErrorRange(TextPointer) Method

Definition

Returns a TextRange object covering any misspelled word at a specified position in the contents of the RichTextBox.

C#
public System.Windows.Documents.TextRange GetSpellingErrorRange(System.Windows.Documents.TextPointer position);

Parameters

position
TextPointer

A TextPointer that specifies a position and logical direction that resolves to a character to examine for a spelling error. Use the LogicalDirection property of this TextPointer to specify the direction of the character to examine.

Returns

A TextRange object covering any misspelled word that includes the character specified by position, or null if no spelling error exists at the specified character.

Remarks

A TextPointer like position usually specifies a position between two characters. Use the LogicalDirection property of position to specify which character to examine.

Applies to

Produto Versões
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also