2 implementations of Start
PresentationFramework (2)
System\Windows\Documents\NLGSpellerInterop.cs (1)
505
public int
Start
System\Windows\Documents\WinRTSpellerInterop.cs (1)
872
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)
883
if (sTextRange.
Start
+ sTextRange.Length <= data.TextMap.ContentStartOffset)
889
if (sTextRange.
Start
>= data.TextMap.ContentEndOffset)
931
if (sTextRange.
Start
+ sTextRange.Length <= data.TextMap.ContentStartOffset)
936
if (sTextRange.
Start
>= data.TextMap.ContentEndOffset)
945
string word = new(data.TextMap.Text, sTextRange.
Start
, sTextRange.Length);
1041
if (sTextRange.
Start
+ sTextRange.Length > textMap.ContentEndOffset)
1050
errorStart = textMap.MapOffsetToPosition(sTextRange.
Start
);
1051
errorEnd = textMap.MapOffsetToPosition(sTextRange.
Start
+ sTextRange.Length);
1053
if (sTextRange.
Start
< textMap.ContentStartOffset)
1055
Invariant.Assert(sTextRange.
Start
+ sTextRange.Length > textMap.ContentStartOffset);
1182
contextOffset = Math.Min(sTextRange.
Start
, contentOffset);
1190
contextOffset = Math.Max(sTextRange.
Start
+ sTextRange.Length, contentOffset);
1245
if (textMap.ContentStartOffset < sTextRange.
Start
)
1248
rightWordBreak = sTextRange.
Start
;
1255
if (textMap.ContentStartOffset > sTextRange.
Start
+ sTextRange.Length)
1257
leftWordBreak = sTextRange.
Start
+ sTextRange.Length;
1268
leftWordBreak = sTextRange.
Start
;
1269
rightWordBreak = sTextRange.
Start
+ sTextRange.Length;
1284
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)
861
this(textRange.
Start
, textRange.Length)
960
public string Text => SourceString?.Substring(TextRange.
Start
, TextRange.Length);
1074
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
,