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)
903if (sTextRange.Start + sTextRange.Length <= data.TextMap.ContentStartOffset) 909if (sTextRange.Start >= data.TextMap.ContentEndOffset) 952if (sTextRange.Start + sTextRange.Length <= data.TextMap.ContentStartOffset) 957if (sTextRange.Start >= data.TextMap.ContentEndOffset) 967Array.Copy(data.TextMap.Text, sTextRange.Start, word, 0, sTextRange.Length); 1063if (sTextRange.Start + sTextRange.Length > textMap.ContentEndOffset) 1072errorStart = textMap.MapOffsetToPosition(sTextRange.Start); 1073errorEnd = textMap.MapOffsetToPosition(sTextRange.Start + sTextRange.Length); 1075if (sTextRange.Start < textMap.ContentStartOffset) 1077Invariant.Assert(sTextRange.Start + sTextRange.Length > textMap.ContentStartOffset); 1204contextOffset = Math.Min(sTextRange.Start, contentOffset); 1212contextOffset = Math.Max(sTextRange.Start + sTextRange.Length, contentOffset); 1267if (textMap.ContentStartOffset < sTextRange.Start) 1270rightWordBreak = sTextRange.Start; 1277if (textMap.ContentStartOffset > sTextRange.Start + sTextRange.Length) 1279leftWordBreak = sTextRange.Start + sTextRange.Length; 1290leftWordBreak = sTextRange.Start; 1291rightWordBreak = sTextRange.Start + sTextRange.Length; 1306rightWordBreak = 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,