1 write to _that
PresentationCore (1)
System\Windows\Media\FormattedText.cs (1)
887_that = text;
30 references to _that
PresentationCore (30)
System\Windows\Media\FormattedText.cs (30)
888_that._textSourceImpl ??= new TextSourceImplementation(_that); 950if (_that._maxTextWidths == null) 951return _that._maxTextWidth; 952return _that._maxTextWidths[Math.Min(line, _that._maxTextWidths.Length - 1)]; 964if (_that._text.Length == 0) 968_that._textSourceImpl, 971_that._defaultParaProps, 976if (_totalHeight + _currentLine.Height > _that._maxTextHeight) 1002Debug.Assert(_totalHeight + _currentLine.Height <= _that._maxTextHeight); 1009if (_textStorePosition + _currentLine.Length < _that._text.Length) 1013if (_lineCount + 1 >= _that._maxLineCount) 1018_that._textSourceImpl, 1021_that._defaultParaProps, 1024nextLineFits = (_totalHeight + _currentLine.Height + _nextLine.Height <= _that._maxTextHeight); 1033if (_that._trimming != TextTrimming.None && !_currentLine.HasCollapsed) 1038TextWrapping currentWrap = _that._defaultParaProps.TextWrapping; 1039_that._defaultParaProps.SetTextWrapping(TextWrapping.NoWrap); 1045_that._textSourceImpl, 1048_that._defaultParaProps, 1053_that._defaultParaProps.SetTextWrapping(currentWrap); 1081if (_that._trimming != TextTrimming.None && line.HasOverflowed && line.Length > 0) 1086Debug.Assert(_that._text.Length > 0 && textSourcePosition + line.Length <= _that._text.Length + 1); 1089_that._formatRuns, 1090_that._latestPosition, 1091Math.Min(textSourcePosition + line.Length - 1, _that._text.Length - 1) 1098if (_that._trimming == TextTrimming.CharacterEllipsis) 1102Debug.Assert(_that._trimming == TextTrimming.WordEllipsis);