Word) (Rows.Shading 屬性
會傳回參照指定之物件網底格式設定的 Shading 物件。
語法
expression. Shading
需要 expression。 代表 Rows 物件的 變數。
範例
本範例會對選取範圍內的第一個段落套用黃色網底。
With Selection.Paragraphs(1).Shading
.Texture = wdTexture12Pt5Percent
.BackgroundPatternColorIndex = wdYellow
.ForegroundPatternColorIndex = wdBlack
End With
本範例對第一張表格的第一列套用水平規線條材質的網底。
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 支援與意見反應。