7 writes to Text
PresentationFramework (7)
System\Windows\Documents\RtfToXamlLexer.cs (4)
113token.Text = CurrentEncoding.GetString(_rtfBytes, controlStartIndex - 1, _rtfIndex - rtfStartIndex); 131token.Text = CurrentEncoding.GetString(_rtfBytes, _rtfIndex, 1); 406token.Text = CurrentEncoding.GetString(bytes, 0, i); 410token.Text = CurrentEncoding.GetString(_rtfBytes, s, e - s);
System\Windows\Documents\RtfToXamlReader.cs (3)
11607token.Text = new string('\xA0', 1); // Unicode NBSP 11611token.Text = string.Empty; 11618token.Text = new string('\x2011', 1);
7 references to Text
PresentationFramework (7)
System\Windows\Documents\RtfToXamlReader.cs (7)
9722HandleNormalText(token.Text, fs); 9743if (token.Text.Length == 0) 9757HandleNormalText(token.Text, _converterState.TopFormatState); 11390HandleNormalText(token.Text, _converterState.TopFormatState); 11396HandleNormalText(token.Text, _converterState.TopFormatState); 11403string tokenName = token.Text; 11603switch (token.Text[0])