PdfRpt.Core.Helper.ExcelHelper.Pixel2RowHeight C# (CSharp) Méthode

Pixel2RowHeight() public static méthode

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