4 writes to Text
PresentationFramework (4)
System\Windows\Documents\FixedSOMTextRun.cs (2)
146run.Text = s.Substring(startIndex, endIndex-startIndex); 154run.Text = string.Create(run.Text.Length, run.Text, (destination, runText) =>
System\Windows\Documents\FixedTextBuilder.cs (2)
1660_textRuns[i-1].Text = $"{_textRuns[i - 1].Text} "; 1666run.Text = $"{run.Text} ";
15 references to Text
PresentationFramework (15)
System\Windows\Documents\FixedSOMFixedBlock.cs (1)
221builder.Append(run.Text);
System\Windows\Documents\FixedSOMTextRun.cs (2)
154run.Text = string.Create(run.Text.Length, run.Text, (destination, runText) =>
System\Windows\Documents\FixedTextBuilder.cs (12)
581sb.Append(element.Text); 825prevRun.Text, 826currentRun.Text, 1586strBuilder.Append(run.Text); 1656Debug.Assert(run.EndIndex - run.StartIndex == run.Text.Length); 1660_textRuns[i-1].Text = $"{_textRuns[i - 1].Text} "; 1664if (addSpace && run.Text.Length>0 && !run.Text.EndsWith(" ", StringComparison.Ordinal) && !IsHyphen(run.Text[run.Text.Length - 1])) 1666run.Text = $"{run.Text} "; 1686offset += textRun.Text.Length;