1 write to _that
PresentationCore (1)
System\Windows\Media\FormattedText.cs (1)
922_that = text;
31 references to _that
PresentationCore (31)
System\Windows\Media\FormattedText.cs (31)
923if (_that._textSourceImpl == null) 924_that._textSourceImpl = new TextSourceImplementation(_that); 993if (_that._maxTextWidths == null) 994return _that._maxTextWidth; 995return _that._maxTextWidths[Math.Min(line, _that._maxTextWidths.Length - 1)]; 1007if (_that._text.Length == 0) 1011_that._textSourceImpl, 1014_that._defaultParaProps, 1019if (_totalHeight + _currentLine.Height > _that._maxTextHeight) 1045Debug.Assert(_totalHeight + _currentLine.Height <= _that._maxTextHeight); 1052if (_textStorePosition + _currentLine.Length < _that._text.Length) 1056if (_lineCount + 1 >= _that._maxLineCount) 1061_that._textSourceImpl, 1064_that._defaultParaProps, 1067nextLineFits = (_totalHeight + _currentLine.Height + _nextLine.Height <= _that._maxTextHeight); 1079if (_that._trimming != TextTrimming.None && !_currentLine.HasCollapsed) 1084TextWrapping currentWrap = _that._defaultParaProps.TextWrapping; 1085_that._defaultParaProps.SetTextWrapping(TextWrapping.NoWrap); 1092_that._textSourceImpl, 1095_that._defaultParaProps, 1100_that._defaultParaProps.SetTextWrapping(currentWrap); 1129if (_that._trimming != TextTrimming.None && line.HasOverflowed && line.Length > 0) 1134Debug.Assert(_that._text.Length > 0 && textSourcePosition + line.Length <= _that._text.Length + 1); 1137_that._formatRuns, 1138_that._latestPosition, 1139Math.Min(textSourcePosition + line.Length - 1, _that._text.Length - 1) 1146if (_that._trimming == TextTrimming.CharacterEllipsis) 1150Debug.Assert(_that._trimming == TextTrimming.WordEllipsis);