Quote Originally Posted by WILL View Post
The necessity of calculating density and dpi of a monitor still remains on mobile screens and not so much desktop/laptop monitors and screens. I don't think that these values are exposed to the software level anyhow, are they?
Yes they are! YOu can get screen DPI using:
Code:
DPI := Screen.PixelsPerInch
NOTE: PixelsPerInch is only acurate for vertical measurment.So to get vertical and horizontal values for PixelsPerInch you actually need to calculate them using Screen resolution. So it is a bit of work.