Rows.Shading 属性 (Word)
返回一个 Shading 对象,该对象代表指定对象的底纹格式。
expression. Shading
表达式是必需的。 一个代表 Rows 对象的变量。
以下示例对所选内容的第一段应用黄色底纹。
With Selection.Paragraphs(1).Shading
.Texture = wdTexture12Pt5Percent
.BackgroundPatternColorIndex = wdYellow
.ForegroundPatternColorIndex = wdBlack
End With
本示例对表格 1 的第一行应用水平线纹理。
If ActiveDocument.Tables.Count >= 1 Then
With ActiveDocument.Tables(1).Rows(1).Shading
.Texture = wdTextureHorizontal
End With
End If
以下示例将活动文档中第一个单词的底纹设置为 10%。
ActiveDocument.Words(1).Shading.Texture = wdTexture10Percent
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。