PdfRpt.Core.Helper.ExcelHelper.Pixel2RowHeight C# (CSharp) Method

Pixel2RowHeight() public static method

convert height to pixel
public static Pixel2RowHeight ( this pixels ) : double
pixels this pixels
return double
        public static double Pixel2RowHeight(this int pixels)
        {
            var excelRowHeight = pixels * 0.75;
            return excelRowHeight;
        }