2 implementations of Start
PresentationFramework (2)
System\Windows\Documents\NLGSpellerInterop.cs (1)
504public int Start
System\Windows\Documents\WinRTSpellerInterop.cs (1)
871public int Start
28 references to Start
PresentationFramework (28)
System\Windows\Documents\NLGSpellerInterop.cs (2)
645public string Text => SourceString?.Substring(TextRange.Start, TextRange.Length); 877endOffset = textRange.Start + textRange.Length;
System\Windows\Documents\Speller.cs (19)
882if (sTextRange.Start + sTextRange.Length <= data.TextMap.ContentStartOffset) 888if (sTextRange.Start >= data.TextMap.ContentEndOffset) 930if (sTextRange.Start + sTextRange.Length <= data.TextMap.ContentStartOffset) 935if (sTextRange.Start >= data.TextMap.ContentEndOffset) 944string word = new(data.TextMap.Text, sTextRange.Start, sTextRange.Length); 1040if (sTextRange.Start + sTextRange.Length > textMap.ContentEndOffset) 1049errorStart = textMap.MapOffsetToPosition(sTextRange.Start); 1050errorEnd = textMap.MapOffsetToPosition(sTextRange.Start + sTextRange.Length); 1052if (sTextRange.Start < textMap.ContentStartOffset) 1054Invariant.Assert(sTextRange.Start + sTextRange.Length > textMap.ContentStartOffset); 1181contextOffset = Math.Min(sTextRange.Start, contentOffset); 1189contextOffset = Math.Max(sTextRange.Start + sTextRange.Length, contentOffset); 1244if (textMap.ContentStartOffset < sTextRange.Start) 1247rightWordBreak = sTextRange.Start; 1254if (textMap.ContentStartOffset > sTextRange.Start + sTextRange.Length) 1256leftWordBreak = sTextRange.Start + sTextRange.Length; 1267leftWordBreak = sTextRange.Start; 1268rightWordBreak = sTextRange.Start + sTextRange.Length; 1283rightWordBreak = sTextRange.Start;
System\Windows\Documents\TextMapOffsetErrorLogger.cs (2)
87Start = textSegment.Start, 156/// instance containing <see cref="SpellerInteropBase.ITextRange.Start"/> and <see cref="SpellerInteropBase.ITextRange.Length"/> values.
System\Windows\Documents\WinRTSpellerInterop.cs (3)
860this(textRange.Start, textRange.Length) 959public string Text => SourceString?.Substring(TextRange.Start, TextRange.Length); 1073endOffset = textRange.Start + textRange.Length;
System\Windows\Documents\WinRTSpellerInteropExtensions.cs (2)
178var altForm = documentText.Substring(lastToken.TextRange.Start, lastTokenText.Length + i).TrimEnd('\0').TrimEnd(); 187lastToken.TextRange.Start,