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