Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 C# .net 创建一个 excel 表。最后我想自动调整列。我正在使用以下代码。
sheet0.Cells["A2:B2"].Columns.AutoFit();
但这是一个例外。谁能帮我解决这个问题?
谢谢你。
您可以使用:
sheet0.Columns.AutoFit();
这将重新调整此工作表中每一列的大小以最适合。
自动调整文档:
更改范围内的列宽或范围内的行高以实现最佳拟合。
尝试这样做:
sheet0.Columns["A:B"].AutoFit();