2 implementations of Start
PresentationFramework (2)
System\Windows\Documents\NLGSpellerInterop.cs (1)
505public int Start
System\Windows\Documents\WinRTSpellerInterop.cs (1)
872public 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)
883if (sTextRange.Start + sTextRange.Length <= data.TextMap.ContentStartOffset) 889if (sTextRange.Start >= data.TextMap.ContentEndOffset) 931if (sTextRange.Start + sTextRange.Length <= data.TextMap.ContentStartOffset) 936if (sTextRange.Start >= data.TextMap.ContentEndOffset) 945string word = new(data.TextMap.Text, sTextRange.Start, sTextRange.Length); 1041if (sTextRange.Start + sTextRange.Length > textMap.ContentEndOffset) 1050errorStart = textMap.MapOffsetToPosition(sTextRange.Start); 1051errorEnd = textMap.MapOffsetToPosition(sTextRange.Start + sTextRange.Length); 1053if (sTextRange.Start < textMap.ContentStartOffset) 1055Invariant.Assert(sTextRange.Start + sTextRange.Length > textMap.ContentStartOffset); 1182contextOffset = Math.Min(sTextRange.Start, contentOffset); 1190contextOffset = Math.Max(sTextRange.Start + sTextRange.Length, contentOffset); 1245if (textMap.ContentStartOffset < sTextRange.Start) 1248rightWordBreak = sTextRange.Start; 1255if (textMap.ContentStartOffset > sTextRange.Start + sTextRange.Length) 1257leftWordBreak = sTextRange.Start + sTextRange.Length; 1268leftWordBreak = sTextRange.Start; 1269rightWordBreak = sTextRange.Start + sTextRange.Length; 1284rightWordBreak = 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)
861this(textRange.Start, textRange.Length) 960public string Text => SourceString?.Substring(TextRange.Start, TextRange.Length); 1074endOffset = 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,