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)
11572token.Text = new string('\xA0', 1); // Unicode NBSP 11576token.Text = string.Empty; 11583token.Text = new string('\x2011', 1);
7 references to Text
PresentationFramework (7)
System\Windows\Documents\RtfToXamlReader.cs (7)
9695HandleNormalText(token.Text, fs); 9716if (token.Text.Length == 0) 9730HandleNormalText(token.Text, _converterState.TopFormatState); 11359HandleNormalText(token.Text, _converterState.TopFormatState); 11365HandleNormalText(token.Text, _converterState.TopFormatState); 11372string tokenName = token.Text; 11568switch (token.Text[0])