EPPLUS AutoFit单元格

时间:2016-04-22 12:40:42

标签: c# excel visual-studio-2013 epplus

如何根据一个输入的最大长度在我的单元格上设置自动调整大小。

using (rng = workSheet.Cells["A1:G1"])
{
    rng.Style.Font.Bold = true;
    rng.Style.Fill.PatternType = ExcelFillStyle.Solid;
    rng.Style.Fill.BackgroundColor.SetColor(Color.DarkBlue);
    rng.Style.Font.Color.SetColor(Color.White);

}

using (ExcelRange col = workSheet.Cells[2, 6, 7, 7])
{
    col.Style.Numberformat.Format = "yyyy-mm-dd HH:mm";
    col.Style.HorizontalAlignment = ExcelHorizontalAlignment.Right;

}

for (int i = 1; i <= a; i++)
{
    workSheet.Cells["A1"].Value = "RU_ID";
    workSheet.Cells["B1"].Value = "COR_REQ_ID";
    workSheet.Cells["C1"].Value = "RU_NAME";
    workSheet.Cells["D1"].Value = "PARENT_RU_NAME";
    workSheet.Cells["E1"].Value = "ADJUSTMENT_STATE";
    workSheet.Cells["F1"].Value = "COR_START";
    workSheet.Cells["G1"].Value = "COR_END";
}
...

rng.AutoFitColumns();
string path = @"D:\excel\test.xlsx";
Stream stream = File.Create(path);
excel.SaveAs(stream);
stream.Close();
byte[] data = File.ReadAllBytes(path);

}

AutoFitColumn唯一要做的就是将单元格设置为标题的大小,就好像我的标题为“STH”,输入为“Something good”,“增加单元格大小”比AutoFitColumn将根据“STH”设置大小而不是“增加单元大小的东西”。 在此先感谢您的帮助。

1 个答案:

答案 0 :(得分:12)

看看你的界限:

using (rng = workSheet.Cells["A1:G1"])
...
rng.AutoFitColumns();

请注意,您在标题AutoFitColumns的范围内调用A1:G1,因此EPPlus仅使用这些单元格来确定列的宽度。

请改为:

workSheet.Cells.AutoFitColumns();

因为Epplus中的Cells只包含具有实际值的单元格,所以对效率没有真正的担忧。