RichTextBox.GetSpellingErrorRange(TextPointer) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回一个 TextRange 对象,其中包括 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
参数
- position
- TextPointer
一个 TextPointer,用于指定将解析为一个字符以检查拼写错误的位置和逻辑方向。 使用此 TextPointer 的 LogicalDirection 属性以指定要检查的字符方向。
返回
一个 TextRange 对象,其中包括含有 position
所指定字符的任何拼错的单词。如果指定字符处没有拼写错误,则为 null
。
注解
类似TextPointerposition
通常指定两个字符之间的位置。 使用属性LogicalDirectionposition
指定要检查的字符。