11 references to Start
PresentationFramework (11)
System\Windows\Controls\RichTextBox.cs (1)
247return (spellingError == null) ? null : new TextRange(spellingError.Start, spellingError.End);
System\Windows\Controls\TextBox.cs (2)
504return (spellingError == null) ? -1 : spellingError.Start.Offset; 521return (spellingError == null) ? 0 : spellingError.End.Offset - spellingError.Start.Offset;
System\Windows\Documents\Speller.cs (3)
169return spellingError == null ? null : spellingError.Start; 186CultureInfo culture = GetCurrentCultureAndLanguage(error.Start, out XmlLanguage language); 190ExpandToWordBreakAndContext(error.Start, LogicalDirection.Backward, language, out ITextPointer contentStart, out ITextPointer contextStart);
System\windows\Documents\TextEditorSpelling.cs (5)
152This.Selection.Select(spellingError.Start, spellingError.End); 163XmlLanguage language = (XmlLanguage)spellingError.Start.GetValue(FrameworkElement.LanguageProperty); 184textStart = spellingError.Start.CreatePointer(LogicalDirection.Backward); 191while (textEnd.CompareTo(spellingError.Start) > 0 && 203textEnd.CompareTo(spellingError.Start) != 0);