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)
11606token.Text = new string('\xA0', 1); // Unicode NBSP 11610token.Text = string.Empty; 11617token.Text = new string('\x2011', 1);
7 references to Text
PresentationFramework (7)
System\Windows\Documents\RtfToXamlReader.cs (7)
9721HandleNormalText(token.Text, fs); 9742if (token.Text.Length == 0) 9756HandleNormalText(token.Text, _converterState.TopFormatState); 11389HandleNormalText(token.Text, _converterState.TopFormatState); 11395HandleNormalText(token.Text, _converterState.TopFormatState); 11402string tokenName = token.Text; 11602switch (token.Text[0])