7 writes to Text
PresentationFramework (7)
System\Windows\Documents\RtfToXamlLexer.cs (4)
112token.Text = CurrentEncoding.GetString(_rtfBytes, controlStartIndex - 1, _rtfIndex - rtfStartIndex); 130token.Text = CurrentEncoding.GetString(_rtfBytes, _rtfIndex, 1); 405token.Text = CurrentEncoding.GetString(bytes, 0, i); 409token.Text = CurrentEncoding.GetString(_rtfBytes, s, e - s);
System\Windows\Documents\RtfToXamlReader.cs (3)
11474token.Text = new string('\xA0', 1); // Unicode NBSP 11478token.Text = string.Empty; 11485token.Text = new string('\x2011', 1);
7 references to Text
PresentationFramework (7)
System\Windows\Documents\RtfToXamlReader.cs (7)
9706HandleNormalText(token.Text, fs); 9727if (token.Text.Length == 0) 9741HandleNormalText(token.Text, _converterState.TopFormatState); 11257HandleNormalText(token.Text, _converterState.TopFormatState); 11263HandleNormalText(token.Text, _converterState.TopFormatState); 11270string tokenName = token.Text; 11470switch (token.Text[0])