PdfRpt.Core.Helper.ExcelHelper.Pixel2RowHeight C# (CSharp) Метод

Pixel2RowHeight() публичный статический Метод

convert height to pixel
public static Pixel2RowHeight ( this pixels ) : double
pixels this pixels
Результат double
        public static double Pixel2RowHeight(this int pixels)
        {
            var excelRowHeight = pixels * 0.75;
            return excelRowHeight;
        }