9 references to IdealInfiniteWidth
PresentationCore (9)
Core\CSharp\MS\Internal\TextFormatting\FormatSettings.cs (4)
64
_maxLineWidth = Constants.
IdealInfiniteWidth
;
165
return _pap.Wrap ? finiteFormatWidth : Constants.
IdealInfiniteWidth
;
176
int formatWidth = (paragraphWidth <= 0 ? Constants.
IdealInfiniteWidth
: paragraphWidth);
181
formatWidth = Math.Min(formatWidth, Constants.
IdealInfiniteWidth
);
Core\CSharp\MS\Internal\TextFormatting\FullTextState.cs (1)
117
Constants.
IdealInfiniteWidth
// formatWidth
Core\CSharp\MS\Internal\TextFormatting\LineServices.cs (1)
1562
public const double RealInfiniteWidth =
IdealInfiniteWidth
* DefaultIdealToReal;
Core\CSharp\MS\Internal\TextFormatting\TextStore.cs (2)
2380
_settings.Formatter.IdealToReal((Constants.
IdealInfiniteWidth
- currentPosition), _settings.TextSource.PixelsPerDip),
2385
else if (metrics.Width > _settings.Formatter.IdealToReal((Constants.
IdealInfiniteWidth
- currentPosition), _settings.TextSource.PixelsPerDip))
Core\CSharp\System\Windows\Media\TextFormatting\TextParagraphCache.cs (1)
200
return Constants.
IdealInfiniteWidth
;