1 write to _that
PresentationCore (1)
System\Windows\Media\FormattedText.cs (1)
887_that = text;
31 references to _that
PresentationCore (31)
System\Windows\Media\FormattedText.cs (31)
888if (_that._textSourceImpl == null) 889_that._textSourceImpl = new TextSourceImplementation(_that); 958if (_that._maxTextWidths == null) 959return _that._maxTextWidth; 960return _that._maxTextWidths[Math.Min(line, _that._maxTextWidths.Length - 1)]; 972if (_that._text.Length == 0) 976_that._textSourceImpl, 979_that._defaultParaProps, 984if (_totalHeight + _currentLine.Height > _that._maxTextHeight) 1010Debug.Assert(_totalHeight + _currentLine.Height <= _that._maxTextHeight); 1017if (_textStorePosition + _currentLine.Length < _that._text.Length) 1021if (_lineCount + 1 >= _that._maxLineCount) 1026_that._textSourceImpl, 1029_that._defaultParaProps, 1032nextLineFits = (_totalHeight + _currentLine.Height + _nextLine.Height <= _that._maxTextHeight); 1044if (_that._trimming != TextTrimming.None && !_currentLine.HasCollapsed) 1049TextWrapping currentWrap = _that._defaultParaProps.TextWrapping; 1050_that._defaultParaProps.SetTextWrapping(TextWrapping.NoWrap); 1056_that._textSourceImpl, 1059_that._defaultParaProps, 1064_that._defaultParaProps.SetTextWrapping(currentWrap); 1092if (_that._trimming != TextTrimming.None && line.HasOverflowed && line.Length > 0) 1097Debug.Assert(_that._text.Length > 0 && textSourcePosition + line.Length <= _that._text.Length + 1); 1100_that._formatRuns, 1101_that._latestPosition, 1102Math.Min(textSourcePosition + line.Length - 1, _that._text.Length - 1) 1109if (_that._trimming == TextTrimming.CharacterEllipsis) 1113Debug.Assert(_that._trimming == TextTrimming.WordEllipsis);