7 writes to Text
PresentationFramework (7)
src\Framework\System\Windows\Documents\RtfToXamlLexer.cs (4)
115token.Text = CurrentEncoding.GetString(_rtfBytes, controlStartIndex - 1, _rtfIndex - rtfStartIndex); 133token.Text = CurrentEncoding.GetString(_rtfBytes, _rtfIndex, 1); 408token.Text = CurrentEncoding.GetString(bytes, 0, i); 412token.Text = CurrentEncoding.GetString(_rtfBytes, s, e - s);
src\Framework\System\Windows\Documents\RtfToXamlReader.cs (3)
11673token.Text = new string('\xA0', 1); // Unicode NBSP 11677token.Text = string.Empty; 11684token.Text = new string('\x2011', 1);
7 references to Text
PresentationFramework (7)
src\Framework\System\Windows\Documents\RtfToXamlReader.cs (7)
9788HandleNormalText(token.Text, fs); 9809if (token.Text.Length == 0) 9823HandleNormalText(token.Text, _converterState.TopFormatState); 11459HandleNormalText(token.Text, _converterState.TopFormatState); 11465HandleNormalText(token.Text, _converterState.TopFormatState); 11472string tokenName = token.Text; 11669switch (token.Text[0])