9 references to DefaultRealToIdeal
PresentationCore (9)
Core\CSharp\MS\Internal\TextFormatting\LineServices.cs (1)
1560
public const double DefaultIdealToReal = 1 /
DefaultRealToIdeal
;
Core\CSharp\MS\Internal\TextFormatting\TextFormatterImp.cs (1)
791
get { return Constants.
DefaultRealToIdeal
; }
Core\CSharp\System\Windows\Media\CharacterMetrics.cs (7)
309
int hash = (int)(_blackBoxWidth * Constants.
DefaultRealToIdeal
);
310
hash = (hash * HashMultiplier) + (int)(_blackBoxHeight * Constants.
DefaultRealToIdeal
);
311
hash = (hash * HashMultiplier) + (int)(_baseline * Constants.
DefaultRealToIdeal
);
312
hash = (hash * HashMultiplier) + (int)(_leftSideBearing * Constants.
DefaultRealToIdeal
);
313
hash = (hash * HashMultiplier) + (int)(_rightSideBearing * Constants.
DefaultRealToIdeal
);
314
hash = (hash * HashMultiplier) + (int)(_topSideBearing * Constants.
DefaultRealToIdeal
);
315
hash = (hash * HashMultiplier) + (int)(_bottomSideBearing * Constants.
DefaultRealToIdeal
);