11 references to Start
PresentationFramework (11)
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 (2)
538
return (spellingError == null) ? -1 : spellingError.
Start
.Offset;
555
return (spellingError == null) ? 0 : spellingError.End.Offset - spellingError.
Start
.Offset;
src\Framework\System\Windows\Documents\Speller.cs (3)
178
return spellingError == null ? null : spellingError.
Start
;
209
CultureInfo culture = GetCurrentCultureAndLanguage(error.
Start
, out language);
216
ExpandToWordBreakAndContext(error.
Start
, LogicalDirection.Backward, language, out contentStart, out contextStart);
src\Framework\System\windows\Documents\TextEditorSpelling.cs (5)
155
This.Selection.Select(spellingError.
Start
, spellingError.End);
166
XmlLanguage language = (XmlLanguage)spellingError.
Start
.GetValue(FrameworkElement.LanguageProperty);
187
textStart = spellingError.
Start
.CreatePointer(LogicalDirection.Backward);
194
while (textEnd.CompareTo(spellingError.
Start
) > 0 &&
206
textEnd.CompareTo(spellingError.
Start
) != 0);