/**
* 统一修改表格样式 Macro
*/
function 统一修改表格样式()
{
var tableCount = ActiveDocument.Tables.Count;
for(var i = 1; i <= tableCount; i++){
var table = ActiveDocument.Tables.Item(i);
// 设置字体和大小等样式
table.Range.Font.Name = "宋体";
table.Range.Font.Size = 10;
// 如果需要设置表格边框等样式,可以使用以下代码:
table.Borders.OutsideLineStyle = wdLineStyleSingle
table.Borders.InsideLineStyle = wdLineStyleSingle
}
}
批量给word中的表格加边框
最新推荐文章于 2024-11-13 18:14:03 发布