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