2 implementations of Start
PresentationFramework (2)
System\Windows\Documents\NLGSpellerInterop.cs (1)
509public int Start
System\Windows\Documents\WinRTSpellerInterop.cs (1)
883public int Start
28 references to Start
PresentationFramework (28)
System\Windows\Documents\NLGSpellerInterop.cs (2)
650public string Text => SourceString?.Substring(TextRange.Start, TextRange.Length); 882endOffset = textRange.Start + textRange.Length;
System\Windows\Documents\Speller.cs (19)
890if (sTextRange.Start + sTextRange.Length <= data.TextMap.ContentStartOffset) 896if (sTextRange.Start >= data.TextMap.ContentEndOffset) 938if (sTextRange.Start + sTextRange.Length <= data.TextMap.ContentStartOffset) 943if (sTextRange.Start >= data.TextMap.ContentEndOffset) 952string word = new(data.TextMap.Text, sTextRange.Start, sTextRange.Length); 1048if (sTextRange.Start + sTextRange.Length > textMap.ContentEndOffset) 1057errorStart = textMap.MapOffsetToPosition(sTextRange.Start); 1058errorEnd = textMap.MapOffsetToPosition(sTextRange.Start + sTextRange.Length); 1060if (sTextRange.Start < textMap.ContentStartOffset) 1062Invariant.Assert(sTextRange.Start + sTextRange.Length > textMap.ContentStartOffset); 1189contextOffset = Math.Min(sTextRange.Start, contentOffset); 1197contextOffset = Math.Max(sTextRange.Start + sTextRange.Length, contentOffset); 1252if (textMap.ContentStartOffset < sTextRange.Start) 1255rightWordBreak = sTextRange.Start; 1262if (textMap.ContentStartOffset > sTextRange.Start + sTextRange.Length) 1264leftWordBreak = sTextRange.Start + sTextRange.Length; 1275leftWordBreak = sTextRange.Start; 1276rightWordBreak = sTextRange.Start + sTextRange.Length; 1291rightWordBreak = sTextRange.Start;
System\Windows\Documents\TextMapOffsetErrorLogger.cs (2)
89Start = textSegment.Start, 158/// instance containing <see cref="SpellerInteropBase.ITextRange.Start"/> and <see cref="SpellerInteropBase.ITextRange.Length"/> values.
System\Windows\Documents\WinRTSpellerInterop.cs (3)
872this(textRange.Start, textRange.Length) 971public string Text => SourceString?.Substring(TextRange.Start, TextRange.Length); 1085endOffset = textRange.Start + textRange.Length;
System\Windows\Documents\WinRTSpellerInteropExtensions.cs (2)
181var altForm = documentText.Substring(lastToken.TextRange.Start, lastTokenText.Length + i).TrimEnd('\0').TrimEnd(); 190lastToken.TextRange.Start,