1 write to _that
PresentationCore (1)
System\Windows\Media\FormattedText.cs (1)
888_that = text;
31 references to _that
PresentationCore (31)
System\Windows\Media\FormattedText.cs (31)
889if (_that._textSourceImpl == null) 890_that._textSourceImpl = new TextSourceImplementation(_that); 959if (_that._maxTextWidths == null) 960return _that._maxTextWidth; 961return _that._maxTextWidths[Math.Min(line, _that._maxTextWidths.Length - 1)]; 973if (_that._text.Length == 0) 977_that._textSourceImpl, 980_that._defaultParaProps, 985if (_totalHeight + _currentLine.Height > _that._maxTextHeight) 1011Debug.Assert(_totalHeight + _currentLine.Height <= _that._maxTextHeight); 1018if (_textStorePosition + _currentLine.Length < _that._text.Length) 1022if (_lineCount + 1 >= _that._maxLineCount) 1027_that._textSourceImpl, 1030_that._defaultParaProps, 1033nextLineFits = (_totalHeight + _currentLine.Height + _nextLine.Height <= _that._maxTextHeight); 1045if (_that._trimming != TextTrimming.None && !_currentLine.HasCollapsed) 1050TextWrapping currentWrap = _that._defaultParaProps.TextWrapping; 1051_that._defaultParaProps.SetTextWrapping(TextWrapping.NoWrap); 1057_that._textSourceImpl, 1060_that._defaultParaProps, 1065_that._defaultParaProps.SetTextWrapping(currentWrap); 1093if (_that._trimming != TextTrimming.None && line.HasOverflowed && line.Length > 0) 1098Debug.Assert(_that._text.Length > 0 && textSourcePosition + line.Length <= _that._text.Length + 1); 1101_that._formatRuns, 1102_that._latestPosition, 1103Math.Min(textSourcePosition + line.Length - 1, _that._text.Length - 1) 1110if (_that._trimming == TextTrimming.CharacterEllipsis) 1114Debug.Assert(_that._trimming == TextTrimming.WordEllipsis);