Bloom.Publish.PdfMaker.GetZoomBasedOnScreenDPISettings C# (CSharp) Method

GetZoomBasedOnScreenDPISettings() private method

private GetZoomBasedOnScreenDPISettings ( ) : double
return double
        private double GetZoomBasedOnScreenDPISettings()
        {
            if (WorkspaceView.DPIOfThisAccount == 96)
            {
                return 1.0415;
            }
            if (WorkspaceView.DPIOfThisAccount == 120)
            {
                return 1.249;
            }
            if (WorkspaceView.DPIOfThisAccount == 144)
            {
                return 1.562;
            }
            return 1.04;
        }