导出到 excel 自动调整行不适用于 c#

Export to excel autofit rows not working with c#

目前,我正在使用

using Microsoft.Office.Core;
using Excel = Microsoft.Office.Interop.Excel;

帮助我导出到 excel 但我怎样才能将它设置为自动调整单元格大小而不是用户不必调整大小然后他们就可以阅读 [=24= 中的所有单词]

我用过

xlWorkSheet.UsedRange.Rows.AutoFit();
xlWorkSheet.UsedRange.Columns.AutoFit(); 

但他们的帮助还不够

Current Problem

你必须定义一个范围然后你可以使用

aRange.Columns.AutoFit();

Reference

或者您可以使用

worksheet.Columns.AutoFit();

worksheet.Rows.AutoFit();