C# 生成的自动调整列宽 Excel sheet

Autofit Column Width in C#-generated Excel sheet

我正在尝试通过使用 C# 从 SQL 服务器数据库导出数据来自动调整 Excel sheet 中的列和行。我做了一些研究,我发现的解决方案似乎没有任何影响。

//This code produces the correct Excel File with the expected content
Excel.Application ExcelApp = new Excel.Application();
ExcelApp.Application.Workbooks.Add(Type.Missing);
for (int i = 1; i < myDataTable.Rows.Count + 2; i++)
{
   for (int j = 1; j < myDataTable.Columns.Count + 1; j++)
   {
      if (i == 1)
      {
         ExcelApp.Cells[i, j] = myColumnCollection[j - 1].ToString();
      }
      else
         ExcelApp.Cells[i, j] = myDataTable.Rows[i - 2][j - 1].ToString();
   }
}
ExcelApp.ActiveWorkbook.SaveCopyAs(Application.StartupPath + "\test.xlsx");
ExcelApp.ActiveWorkbook.Saved = true;

//This code is where I tried to do the Autofit work
Excel.Worksheet ws = ExcelApp.ActiveWorkbook.Worksheets[1];
Excel.Range range = ws.UsedRange; 
//ws.Columns.ClearFormats();
//ws.Rows.ClearFormats();
//range.EntireColumn.AutoFit();
//range.EntireRow.AutoFit();
ws.Columns.AutoFit();
ws.Rows.AutoFit();

ExcelApp.Quit();

接近尾声时,我尝试了几种方法。我想我了解 Range.Columns.Autofit()Range.EntireColumn.AutoFit() 之间的区别,并尝试在获得 UsedRange 之前和之后使用 Worksheet.Columns.ClearFormat()。据我所知,其中 None 个完全影响了我的文件。

我需要做什么才能使列和行自动适应其内容?

感谢 Derek 指出显而易见的问题。完成修改后,我需要保存工作簿。我只需要将我的 Autofit() 东西移到保存上方。

 Excel.Worksheet ws = ExcelApp.ActiveWorkbook.Worksheets[1];
        ws.Columns.AutoFit();
        ws.Rows.AutoFit();
        ExcelApp.ActiveWorkbook.SaveCopyAs(Application.StartupPath + "\HaulerInfo.xlsx");
        ExcelApp.ActiveWorkbook.Saved = true;