2 implementations of Start
PresentationFramework (2)
System\Windows\Documents\NLGSpellerInterop.cs (1)
504
public int
Start
System\Windows\Documents\WinRTSpellerInterop.cs (1)
871
public int
Start
28 references to Start
PresentationFramework (28)
System\Windows\Documents\NLGSpellerInterop.cs (2)
645
public string Text => SourceString?.Substring(TextRange.
Start
, TextRange.Length);
877
endOffset = textRange.
Start
+ textRange.Length;
System\Windows\Documents\Speller.cs (19)
882
if (sTextRange.
Start
+ sTextRange.Length <= data.TextMap.ContentStartOffset)
888
if (sTextRange.
Start
>= data.TextMap.ContentEndOffset)
930
if (sTextRange.
Start
+ sTextRange.Length <= data.TextMap.ContentStartOffset)
935
if (sTextRange.
Start
>= data.TextMap.ContentEndOffset)
944
string word = new(data.TextMap.Text, sTextRange.
Start
, sTextRange.Length);
1040
if (sTextRange.
Start
+ sTextRange.Length > textMap.ContentEndOffset)
1049
errorStart = textMap.MapOffsetToPosition(sTextRange.
Start
);
1050
errorEnd = textMap.MapOffsetToPosition(sTextRange.
Start
+ sTextRange.Length);
1052
if (sTextRange.
Start
< textMap.ContentStartOffset)
1054
Invariant.Assert(sTextRange.
Start
+ sTextRange.Length > textMap.ContentStartOffset);
1181
contextOffset = Math.Min(sTextRange.
Start
, contentOffset);
1189
contextOffset = Math.Max(sTextRange.
Start
+ sTextRange.Length, contentOffset);
1244
if (textMap.ContentStartOffset < sTextRange.
Start
)
1247
rightWordBreak = sTextRange.
Start
;
1254
if (textMap.ContentStartOffset > sTextRange.
Start
+ sTextRange.Length)
1256
leftWordBreak = sTextRange.
Start
+ sTextRange.Length;
1267
leftWordBreak = sTextRange.
Start
;
1268
rightWordBreak = sTextRange.
Start
+ sTextRange.Length;
1283
rightWordBreak = sTextRange.
Start
;
System\Windows\Documents\TextMapOffsetErrorLogger.cs (2)
87
Start = textSegment.
Start
,
156
/// instance containing <see cref="SpellerInteropBase.ITextRange.
Start
"/> and <see cref="SpellerInteropBase.ITextRange.Length"/> values.
System\Windows\Documents\WinRTSpellerInterop.cs (3)
860
this(textRange.
Start
, textRange.Length)
959
public string Text => SourceString?.Substring(TextRange.
Start
, TextRange.Length);
1073
endOffset = textRange.
Start
+ textRange.Length;
System\Windows\Documents\WinRTSpellerInteropExtensions.cs (2)
178
var altForm = documentText.Substring(lastToken.TextRange.
Start
, lastTokenText.Length + i).TrimEnd('\0').TrimEnd();
187
lastToken.TextRange.
Start
,