8 references to End
PresentationFramework (8)
src\Framework\System\Windows\Controls\RichTextBox.cs (1)
259
return (spellingError == null) ? null : new TextRange(spellingError.Start, spellingError.
End
);
src\Framework\System\Windows\Controls\TextBox.cs (1)
555
return (spellingError == null) ? 0 : spellingError.
End
.Offset - spellingError.Start.Offset;
src\Framework\System\Windows\Documents\Speller.cs (1)
217
ExpandToWordBreakAndContext(error.
End
, LogicalDirection.Forward, language, out contentEnd, out contextEnd);
src\Framework\System\windows\Documents\TextEditorContextMenu.cs (1)
191
position = spellingError.
End
;
src\Framework\System\windows\Documents\TextEditorSpelling.cs (4)
155
This.Selection.Select(spellingError.Start, spellingError.
End
);
188
while (textStart.CompareTo(spellingError.
End
) < 0 &&
193
textEnd = spellingError.
End
.CreatePointer();
201
textStart.CompareTo(spellingError.
End
) == 0)