7 writes to Text
PresentationFramework (7)
System\Windows\Documents\RtfToXamlLexer.cs (4)
114token.Text = CurrentEncoding.GetString(_rtfBytes, controlStartIndex - 1, _rtfIndex - rtfStartIndex); 132token.Text = CurrentEncoding.GetString(_rtfBytes, _rtfIndex, 1); 407token.Text = CurrentEncoding.GetString(bytes, 0, i); 411token.Text = CurrentEncoding.GetString(_rtfBytes, s, e - s);
System\Windows\Documents\RtfToXamlReader.cs (3)
11573token.Text = new string('\xA0', 1); // Unicode NBSP 11577token.Text = string.Empty; 11584token.Text = new string('\x2011', 1);
7 references to Text
PresentationFramework (7)
System\Windows\Documents\RtfToXamlReader.cs (7)
9696HandleNormalText(token.Text, fs); 9717if (token.Text.Length == 0) 9731HandleNormalText(token.Text, _converterState.TopFormatState); 11360HandleNormalText(token.Text, _converterState.TopFormatState); 11366HandleNormalText(token.Text, _converterState.TopFormatState); 11373string tokenName = token.Text; 11569switch (token.Text[0])