2 implementations of Start
PresentationFramework (2)
System\Windows\Documents\NLGSpellerInterop.cs (1)
505
public int
Start
System\Windows\Documents\WinRTSpellerInterop.cs (1)
875
public int
Start
28 references to Start
PresentationFramework (28)
System\Windows\Documents\NLGSpellerInterop.cs (2)
646
public string Text => SourceString?.Substring(TextRange.
Start
, TextRange.Length);
878
endOffset = textRange.
Start
+ textRange.Length;
System\Windows\Documents\Speller.cs (19)
886
if (sTextRange.
Start
+ sTextRange.Length <= data.TextMap.ContentStartOffset)
892
if (sTextRange.
Start
>= data.TextMap.ContentEndOffset)
934
if (sTextRange.
Start
+ sTextRange.Length <= data.TextMap.ContentStartOffset)
939
if (sTextRange.
Start
>= data.TextMap.ContentEndOffset)
948
string word = new(data.TextMap.Text, sTextRange.
Start
, sTextRange.Length);
1044
if (sTextRange.
Start
+ sTextRange.Length > textMap.ContentEndOffset)
1053
errorStart = textMap.MapOffsetToPosition(sTextRange.
Start
);
1054
errorEnd = textMap.MapOffsetToPosition(sTextRange.
Start
+ sTextRange.Length);
1056
if (sTextRange.
Start
< textMap.ContentStartOffset)
1058
Invariant.Assert(sTextRange.
Start
+ sTextRange.Length > textMap.ContentStartOffset);
1185
contextOffset = Math.Min(sTextRange.
Start
, contentOffset);
1193
contextOffset = Math.Max(sTextRange.
Start
+ sTextRange.Length, contentOffset);
1248
if (textMap.ContentStartOffset < sTextRange.
Start
)
1251
rightWordBreak = sTextRange.
Start
;
1258
if (textMap.ContentStartOffset > sTextRange.
Start
+ sTextRange.Length)
1260
leftWordBreak = sTextRange.
Start
+ sTextRange.Length;
1271
leftWordBreak = sTextRange.
Start
;
1272
rightWordBreak = sTextRange.
Start
+ sTextRange.Length;
1287
rightWordBreak = sTextRange.
Start
;
System\Windows\Documents\TextMapOffsetErrorLogger.cs (2)
88
Start = textSegment.
Start
,
157
/// instance containing <see cref="SpellerInteropBase.ITextRange.
Start
"/> and <see cref="SpellerInteropBase.ITextRange.Length"/> values.
System\Windows\Documents\WinRTSpellerInterop.cs (3)
864
this(textRange.
Start
, textRange.Length)
963
public string Text => SourceString?.Substring(TextRange.
Start
, TextRange.Length);
1077
endOffset = textRange.
Start
+ textRange.Length;
System\Windows\Documents\WinRTSpellerInteropExtensions.cs (2)
179
var altForm = documentText.Substring(lastToken.TextRange.
Start
, lastTokenText.Length + i).TrimEnd('\0').TrimEnd();
188
lastToken.TextRange.
Start
,