1 write to _that
PresentationCore (1)
Core\CSharp\System\Windows\Media\FormattedText.cs (1)
934_that = text;
31 references to _that
PresentationCore (31)
Core\CSharp\System\Windows\Media\FormattedText.cs (31)
935if (_that._textSourceImpl == null) 936_that._textSourceImpl = new TextSourceImplementation(_that); 1005if (_that._maxTextWidths == null) 1006return _that._maxTextWidth; 1007return _that._maxTextWidths[Math.Min(line, _that._maxTextWidths.Length - 1)]; 1020if (_that._text.Length == 0) 1024_that._textSourceImpl, 1027_that._defaultParaProps, 1032if (_totalHeight + _currentLine.Height > _that._maxTextHeight) 1058Debug.Assert(_totalHeight + _currentLine.Height <= _that._maxTextHeight); 1065if (_textStorePosition + _currentLine.Length < _that._text.Length) 1069if (_lineCount + 1 >= _that._maxLineCount) 1074_that._textSourceImpl, 1077_that._defaultParaProps, 1080nextLineFits = (_totalHeight + _currentLine.Height + _nextLine.Height <= _that._maxTextHeight); 1092if (_that._trimming != TextTrimming.None && !_currentLine.HasCollapsed) 1097TextWrapping currentWrap = _that._defaultParaProps.TextWrapping; 1098_that._defaultParaProps.SetTextWrapping(TextWrapping.NoWrap); 1105_that._textSourceImpl, 1108_that._defaultParaProps, 1113_that._defaultParaProps.SetTextWrapping(currentWrap); 1142if (_that._trimming != TextTrimming.None && line.HasOverflowed && line.Length > 0) 1147Debug.Assert(_that._text.Length > 0 && textSourcePosition + line.Length <= _that._text.Length + 1); 1150_that._formatRuns, 1151_that._latestPosition, 1152Math.Min(textSourcePosition + line.Length - 1, _that._text.Length - 1) 1159if (_that._trimming == TextTrimming.CharacterEllipsis) 1163Debug.Assert(_that._trimming == TextTrimming.WordEllipsis);