RichTextBox.GetSpellingErrorRange(TextPointer) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a TextRange object covering any misspelled word at a specified position in the contents of the RichTextBox.
public:
System::Windows::Documents::TextRange ^ GetSpellingErrorRange(System::Windows::Documents::TextPointer ^ position);
public System.Windows.Documents.TextRange GetSpellingErrorRange (System.Windows.Documents.TextPointer position);
member this.GetSpellingErrorRange : System.Windows.Documents.TextPointer -> System.Windows.Documents.TextRange
Public Function GetSpellingErrorRange (position As TextPointer) As TextRange
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.