9 references to DefaultRealToIdeal
PresentationCore (9)
MS\Internal\TextFormatting\LineServices.cs (1)
1292
public const double DefaultIdealToReal = 1 /
DefaultRealToIdeal
;
MS\Internal\TextFormatting\TextFormatterImp.cs (1)
738
get { return Constants.
DefaultRealToIdeal
; }
System\Windows\Media\CharacterMetrics.cs (7)
290
int hash = (int)(_blackBoxWidth * Constants.
DefaultRealToIdeal
);
291
hash = (hash * HashMultiplier) + (int)(_blackBoxHeight * Constants.
DefaultRealToIdeal
);
292
hash = (hash * HashMultiplier) + (int)(_baseline * Constants.
DefaultRealToIdeal
);
293
hash = (hash * HashMultiplier) + (int)(_leftSideBearing * Constants.
DefaultRealToIdeal
);
294
hash = (hash * HashMultiplier) + (int)(_rightSideBearing * Constants.
DefaultRealToIdeal
);
295
hash = (hash * HashMultiplier) + (int)(_topSideBearing * Constants.
DefaultRealToIdeal
);
296
hash = (hash * HashMultiplier) + (int)(_bottomSideBearing * Constants.
DefaultRealToIdeal
);