8 references to End
PresentationFramework (8)
System\Windows\Controls\RichTextBox.cs (1)
247
return (spellingError == null) ? null : new TextRange(spellingError.Start, spellingError.
End
);
System\Windows\Controls\TextBox.cs (1)
523
return (spellingError == null) ? 0 : spellingError.
End
.Offset - spellingError.Start.Offset;
System\Windows\Documents\Speller.cs (1)
191
ExpandToWordBreakAndContext(error.
End
, LogicalDirection.Forward, language, out ITextPointer contentEnd, out ITextPointer contextEnd);
System\windows\Documents\TextEditorContextMenu.cs (1)
180
position = spellingError.
End
;
System\windows\Documents\TextEditorSpelling.cs (4)
152
This.Selection.Select(spellingError.Start, spellingError.
End
);
185
while (textStart.CompareTo(spellingError.
End
) < 0 &&
190
textEnd = spellingError.
End
.CreatePointer();
198
textStart.CompareTo(spellingError.
End
) == 0)