4 writes to Text
PresentationFramework (4)
src\Framework\System\Windows\Documents\FixedSOMTextRun.cs (2)
155
run.
Text
= s.Substring(startIndex, endIndex-startIndex);
168
run.
Text
= new string(chars);
src\Framework\System\Windows\Documents\FixedTextBuilder.cs (2)
1700
_textRuns[i-1].
Text
= _textRuns[i-1].Text + " ";
1706
run.
Text
= run.Text + " ";
15 references to Text
PresentationFramework (15)
src\Framework\System\Windows\Documents\FixedSOMTextRun.cs (4)
162
char[] chars = new char[run.
Text
.Length];
163
for (int i=0; i<run.
Text
.Length; i++)
165
chars[i] = run.
Text
[run.
Text
.Length - 1 - i];
src\Framework\System\Windows\Documents\FixedTextBuilder.cs (11)
608
sb.Append(element.
Text
);
852
prevRun.
Text
,
853
currentRun.
Text
,
1696
Debug.Assert(run.EndIndex - run.StartIndex == run.
Text
.Length);
1700
_textRuns[i-1].Text = _textRuns[i-1].
Text
+ " ";
1704
if (addSpace && run.
Text
.Length>0 && !run.
Text
.EndsWith(" ", StringComparison.Ordinal) && !IsHyphen(run.
Text
[run.
Text
.Length - 1]))
1706
run.Text = run.
Text
+ " ";
1724
offset += textRun.
Text
.Length;