11 references to Start
PresentationFramework (11)
System\Windows\Controls\RichTextBox.cs (1)
246return (spellingError == null) ? null : new TextRange(spellingError.Start, spellingError.End);
System\Windows\Controls\TextBox.cs (2)
505return (spellingError == null) ? -1 : spellingError.Start.Offset; 522return (spellingError == null) ? 0 : spellingError.End.Offset - spellingError.Start.Offset;
System\Windows\Documents\Speller.cs (3)
168return spellingError?.Start; 185CultureInfo culture = GetCurrentCultureAndLanguage(error.Start, out XmlLanguage language); 189ExpandToWordBreakAndContext(error.Start, LogicalDirection.Backward, language, out ITextPointer contentStart, out ITextPointer contextStart);
System\windows\Documents\TextEditorSpelling.cs (5)
151This.Selection.Select(spellingError.Start, spellingError.End); 162XmlLanguage language = (XmlLanguage)spellingError.Start.GetValue(FrameworkElement.LanguageProperty); 183textStart = spellingError.Start.CreatePointer(LogicalDirection.Backward); 190while (textEnd.CompareTo(spellingError.Start) > 0 && 202textEnd.CompareTo(spellingError.Start) != 0);