2 implementations of Start
PresentationFramework (2)
System\Windows\Documents\NLGSpellerInterop.cs (1)
505public int Start
System\Windows\Documents\WinRTSpellerInterop.cs (1)
875public int Start
28 references to Start
PresentationFramework (28)
System\Windows\Documents\NLGSpellerInterop.cs (2)
646public string Text => SourceString?.Substring(TextRange.Start, TextRange.Length); 878endOffset = textRange.Start + textRange.Length;
System\Windows\Documents\Speller.cs (19)
886if (sTextRange.Start + sTextRange.Length <= data.TextMap.ContentStartOffset) 892if (sTextRange.Start >= data.TextMap.ContentEndOffset) 934if (sTextRange.Start + sTextRange.Length <= data.TextMap.ContentStartOffset) 939if (sTextRange.Start >= data.TextMap.ContentEndOffset) 948string word = new(data.TextMap.Text, sTextRange.Start, sTextRange.Length); 1044if (sTextRange.Start + sTextRange.Length > textMap.ContentEndOffset) 1053errorStart = textMap.MapOffsetToPosition(sTextRange.Start); 1054errorEnd = textMap.MapOffsetToPosition(sTextRange.Start + sTextRange.Length); 1056if (sTextRange.Start < textMap.ContentStartOffset) 1058Invariant.Assert(sTextRange.Start + sTextRange.Length > textMap.ContentStartOffset); 1185contextOffset = Math.Min(sTextRange.Start, contentOffset); 1193contextOffset = Math.Max(sTextRange.Start + sTextRange.Length, contentOffset); 1248if (textMap.ContentStartOffset < sTextRange.Start) 1251rightWordBreak = sTextRange.Start; 1258if (textMap.ContentStartOffset > sTextRange.Start + sTextRange.Length) 1260leftWordBreak = sTextRange.Start + sTextRange.Length; 1271leftWordBreak = sTextRange.Start; 1272rightWordBreak = sTextRange.Start + sTextRange.Length; 1287rightWordBreak = sTextRange.Start;
System\Windows\Documents\TextMapOffsetErrorLogger.cs (2)
88Start = textSegment.Start, 157/// instance containing <see cref="SpellerInteropBase.ITextRange.Start"/> and <see cref="SpellerInteropBase.ITextRange.Length"/> values.
System\Windows\Documents\WinRTSpellerInterop.cs (3)
864this(textRange.Start, textRange.Length) 963public string Text => SourceString?.Substring(TextRange.Start, TextRange.Length); 1077endOffset = textRange.Start + textRange.Length;
System\Windows\Documents\WinRTSpellerInteropExtensions.cs (2)
179var altForm = documentText.Substring(lastToken.TextRange.Start, lastTokenText.Length + i).TrimEnd('\0').TrimEnd(); 188lastToken.TextRange.Start,