设置Word表格的VBA代码

时间:2023-12-13 03:56:54 

VBA代码设置Word表格属性。

Dim i As Table, N As Integer

On Error Resume Next ’忽略错误

Application.ScreenUpdating = False ’关闭屏幕更新

For Each i In ActiveDocument.Tables ’在表格中循环

With i

.Style = "列表型 4" ’将所有表格设置为"列表型4"的样式

With .Borders ‘边框

.InsideLineStyle = wdLineStyleSingle ’设置内部边框线条

End With

With .Rows(1).Borders(wdBorderBottom) ‘第一行的底边框

.LineStyle = wdLineStyleDouble ‘双线型

.LineWidth = wdLineWidth050pt

.Color = wdColorAutomatic

End With

If .Rows.Count > 1 Then ’ 如果表格行数大于1

If Len(.Cell(2, 1).Range) <= 2 Then ’如果第二行第一列不为空

With .Rows(2).Shading ’设置底纹

.Texture = wdTextureNone ’无底底纹

.ForegroundPatternColor = wdColorAutomatic

.BackgroundPatternColor = wdColorGray125

End With

End If

End If

For N = 2 To .Columns.Count ’从第二列到最后一列

.Columns(N).Select ’单元格对齐方式为中部居中

Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter

Selection.Cells.VerticalAlignment = wdCellAlignVerticalCenter

Next N

End With

Next i

Application.ScreenUpdating = True

以上的代码功能为:表格集合中的循环与对单元格边框的设置。

标签:设置Word表格的VBA代码
0
投稿

猜你喜欢

  • Win10 1903内存使用爆满怎么解决?

    2023-04-26 14:35:38
  • Word文字要怎么竖向排列?

    2023-10-04 20:30:12
  • execl打印账本时设置打印区域的技巧

    2023-11-10 09:56:06
  • PPT怎么设计2018主题海报? ppt设计海报的教程

    2022-07-24 03:57:24
  • Win8下不能打开IE10浏览器的解决办法

    2023-08-10 21:51:03
  • word 是不是可以直接插入网页上的图片

    2023-06-01 23:47:09
  • Win10你需要关注的事项不兼容无法更新怎么办?

    2023-01-08 12:16:34
  • Win7如何修改资源管理器左侧导航窗口的宽度

    2022-12-24 11:18:04
  • CPU使用率老是100%怎么办?

    2023-08-14 03:06:06
  • 电脑突然黑屏怎么办?电脑突然黑屏的解决方法

    2023-11-06 18:41:29
  • win7系统上的“快速启动栏”跑哪去了

    2023-06-26 08:05:56
  • Win7共享访问出现错误代码800704cf的解决方法

    2022-09-29 22:12:50
  • win10盗贼之海连接不上服务器_win10盗贼之海连接不上服务器解决方法

    2023-01-14 15:20:51
  • 什么是CCleaner,CCleaner是否适合Mac?

    2022-05-03 01:47:52
  • 打印机错误显示正在打印该怎么处理?

    2022-08-15 03:19:18
  • 如何找回Win7丢失的搜索功能

    2023-04-21 12:09:10
  • 搜狗高速浏览器无法自动登录网站怎么办?

    2023-06-29 08:30:42
  • 实战WPS转义符在查找替换中的应用

    2022-11-21 06:34:38
  • excel实现按颜色求和与计数函数

    2022-07-10 01:01:04
  • epic进不去怎么办_epic进不去游戏解决方法

    2022-06-20 16:19:47
  • asp之家 电脑教程 m.aspxhome.com