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