11 references to Start
PresentationFramework (11)
System\Windows\Controls\RichTextBox.cs (1)
251
return (spellingError == null) ? null : new TextRange(spellingError.
Start
, spellingError.End);
System\Windows\Controls\TextBox.cs (2)
511
return (spellingError == null) ? -1 : spellingError.
Start
.Offset;
528
return (spellingError == null) ? 0 : spellingError.End.Offset - spellingError.
Start
.Offset;
System\Windows\Documents\Speller.cs (3)
173
return spellingError == null ? null : spellingError.
Start
;
190
CultureInfo culture = GetCurrentCultureAndLanguage(error.
Start
, out XmlLanguage language);
194
ExpandToWordBreakAndContext(error.
Start
, LogicalDirection.Backward, language, out ITextPointer contentStart, out ITextPointer contextStart);
System\windows\Documents\TextEditorSpelling.cs (5)
153
This.Selection.Select(spellingError.
Start
, spellingError.End);
164
XmlLanguage language = (XmlLanguage)spellingError.
Start
.GetValue(FrameworkElement.LanguageProperty);
185
textStart = spellingError.
Start
.CreatePointer(LogicalDirection.Backward);
192
while (textEnd.CompareTo(spellingError.
Start
) > 0 &&
204
textEnd.CompareTo(spellingError.
Start
) != 0);