예제 #1
0
        public void SetColumnWidth(int x, string px)
        {
            double width = PFDataHelper.WebWidthToExcel(px).Value;

            sheet.Cells.SetColumnWidth(x, width);
            //sheet.Cells.SetColumnWidth(x, width);
        }
예제 #2
0
        public void SetRowHeight(int y, string px)
        {
            double height = PFDataHelper.WebWidthToExcel(px).Value;

            sheet.Cells.SetRowHeight(y, height);
        }