Shading オブジェクト (Word)
オブジェクトの網かけの属性を含みます。
注釈
Shading プロパティを使用して Shading オブジェクトを取得します。 次の使用例は、作業中の文書の最初の段落に 10% の灰色の網かけを設定します。
ActiveDocument.Paragraphs(1).Shading.Texture = wdTexture10Percent
次の使用例は、選択範囲に前景と背景の色が異なる網かけを設定します。
With Selection.Shading
.Texture = wdTexture20Percent
.ForegroundPatternColorIndex = wdBlue
.BackgroundPatternColorIndex = wdYellow
End With
次の使用例は、作業中の文書の最初の表の先頭行に薄い縦縞を設定します。
ActiveDocument.Tables(1).Rows(1).Shading.Texture = _
wdTextureVertical
プロパティ
名前 |
---|
Application |
BackgroundPatternColor |
BackgroundPatternColorIndex |
Creator |
ForegroundPatternColor |
ForegroundPatternColorIndex |
Parent |
Texture |
関連項目
サポートとフィードバック
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。