2 implementations of Start
PresentationFramework (2)
src\Framework\System\Windows\Documents\NLGSpellerInterop.cs (1)
577public int Start
src\Framework\System\Windows\Documents\WinRTSpellerInterop.cs (1)
966public int Start
21 references to Start
PresentationFramework (21)
src\Framework\System\Windows\Documents\NLGSpellerInterop.cs (1)
999endOffset = textRange.Start + textRange.Length;
src\Framework\System\Windows\Documents\Speller.cs (19)
958if (sTextRange.Start + sTextRange.Length <= data.TextMap.ContentStartOffset) 964if (sTextRange.Start >= data.TextMap.ContentEndOffset) 1007if (sTextRange.Start + sTextRange.Length <= data.TextMap.ContentStartOffset) 1012if (sTextRange.Start >= data.TextMap.ContentEndOffset) 1022Array.Copy(data.TextMap.Text, sTextRange.Start, word, 0, sTextRange.Length); 1118if (sTextRange.Start + sTextRange.Length > textMap.ContentEndOffset) 1127errorStart = textMap.MapOffsetToPosition(sTextRange.Start); 1128errorEnd = textMap.MapOffsetToPosition(sTextRange.Start + sTextRange.Length); 1130if (sTextRange.Start < textMap.ContentStartOffset) 1132Invariant.Assert(sTextRange.Start + sTextRange.Length > textMap.ContentStartOffset); 1264contextOffset = Math.Min(sTextRange.Start, contentOffset); 1272contextOffset = Math.Max(sTextRange.Start + sTextRange.Length, contentOffset); 1327if (textMap.ContentStartOffset < sTextRange.Start) 1330rightWordBreak = sTextRange.Start; 1337if (textMap.ContentStartOffset > sTextRange.Start + sTextRange.Length) 1339leftWordBreak = sTextRange.Start + sTextRange.Length; 1350leftWordBreak = sTextRange.Start; 1351rightWordBreak = sTextRange.Start + sTextRange.Length; 1366rightWordBreak = sTextRange.Start;
src\Framework\System\Windows\Documents\WinRTSpellerInterop.cs (1)
1166endOffset = textRange.Start + textRange.Length;