Excel 列自动宽度
我正在用 VB 6 编写一个应用程序,需要将 Excel 工作表的列宽调整为该列中内容的最大大小。属性Autofit
仅使列的宽度与其标题的宽度一样宽。但我希望它是在其内容的最大大小的基础上完成的。
有办法实现这一点吗?
I am writing an application in VB 6 where I need to resize the column width of an Excel worksheet to that of the maximum size of the content in that column. The property Autofit
only makes the width of the columns as wide as that of its caption. But I want it to be done on the basis of the maximum size of its content.
Is there a way to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
自动调整功能应该可以正常工作,只需确保:
希望,这会有所帮助。 ..
The autofit function should work fine, just make sure:
Hope, this helps...
您的代码应该如下所示:
Your code should look something like this:
此示例更改
Sheet1
上A
至I
列的宽度以实现最佳拟合:此示例更改
A 列的宽度
通过Sheet1
上的E
实现最佳拟合,仅基于单元格A1:E1
的内容:This example changes the width of columns
A
throughI
onSheet1
to achieve the best fit:This example changes the width of columns
A
throughE
onSheet1
to achieve the best fit, based only on the contents of cellsA1:E1
:自动调整仅适用于数字和日期。
请参阅 Excel 2003 XML 格式 - AutoFitWidth 不起作用
Auto fit will work only for numbers and date.
Please see Excel 2003 XML format - AutoFitWidth not working