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