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