如何用VBA使Word表格整齐地适合页面
我想在 Word 表格上执行以下操作: AutoFitBehavior(wdAutoFitWindow)
但是:
- 我不希望单元格中的文本换行(因此我使用
Rows.HeightRule = wdRowHeightExactly
)。 - 如果文本太大而表格无法适应页面,我希望最大的单元格应用
FitText
直到它 - 需要处理包含合并单元格的表格
我将发布我自己的表格尝试作为答案,但我想知道是否有更好的方法?
I'd like to do something like: AutoFitBehavior(wdAutoFitWindow)
on a Word table but:
- I don't want the the text in the cells to wrap (so I use
Rows.HeightRule = wdRowHeightExactly
). - If the text is too large for the table to fit on the page, I'd like the largest cells to have
FitText
applied until it does - It needs to handle tables with merged cells
I'll post my own attempt as an answer but I wonder if there is a better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我预先计算了所需的表格宽度,并将其传递到以下
Fit
函数中:归功于 vbforums 用于排序算法
I pre-calculate the desired width of the table and pass it into the following
Fit
function:credit to vbforums for the sorting algorithm