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