zoukankan      html  css  js  c++  java
  • 使用Aspose.Cells组件生成Excel文件列宽度自适应时出错:Column width must be between 0 and 255

    错误提示:Column width must be between 0 and 255

    出错处

             /// <summary>          
            /// 设置表页的列宽度自适应          
            /// </summary>          
            /// <param name="sheet">worksheet对象</param>          
            void setColumnWithAuto(Worksheet sheet)          
            {              
                Cells cells = sheet.Cells;              
                int columnCount = cells.MaxColumn;  //获取表页的最大列数              
                int rowCount = cells.MaxRow;        //获取表页的最大行数                            
                for (int col = 0; col < columnCount; col++)              
                {                  
                    sheet.AutoFitColumn(col, 0, rowCount);              
                }              
                for (int col = 0; col < columnCount; col++)              
                {  
                    cells.SetColumnWidthPixel(col, cells.GetColumnWidthPixel(col) + 30);
                }          
            }

    原因分析:撰写代码者是参考网上的代码,如http://www.cnblogs.com/kdkler/p/4508134.html,但由于输出时单个单元格内内容过长,导致报错。

    修改:增加一层判断

       /// <summary>          
            /// 设置表页的列宽度自适应          
            /// </summary>         
            /// /// <param name="sheet">worksheet对象</param>       
            public static void setColumnWithAuto(Worksheet sheet)
            {
                Cells cells = sheet.Cells;
                int columnCount = cells.MaxColumn + 1;
                //获取表页的最大列数            
                int rowCount = cells.MaxRow;
                //获取表页的最大行数                     
                for (int col = 0; col < columnCount; col++)
                {
                    sheet.AutoFitColumn(col, 0, rowCount);
                }
                for (int col = 0; col < columnCount; col++)
                {
                    int pixel = cells.GetColumnWidthPixel(col)+30;
                    if (pixel > 255)
                    {
                        cells.SetColumnWidthPixel(col, 255);
                    }
                    else
                    {
                        cells.SetColumnWidthPixel(col, pixel);
                    }
                }
            }

  • 相关阅读:
    附加数据库 对于 服务器“00-PC”失败
    SQL 语句转换格式函数Cast、Convert
    sql语句:union
    ISNULL-sqlserver语句
    SQL中的CASE WHEN语句
    SQL SELECT INTO 语句
    Sql语句中IN等方面的用法
    combobox的不常用的方法和将txt文本内容加到textbox中显示
    程序员:“菜鸟”和“大神”差距在哪
    过劳死离我们有多远?
  • 原文地址:https://www.cnblogs.com/mcwym/p/6888166.html
Copyright © 2011-2022 走看看