Paragraph.Shading property (Word)

Returns a Shading object that refers to the shading formatting for the specified paragraph.

Syntax

expression. Shading

expression Required. A variable that represents a 'Paragraph' object.

Example

This example applies yellow shading to the first paragraph in the selection.

With Selection.Paragraphs(1).Shading 
 .Texture = wdTexture12Pt5Percent 
 .BackgroundPatternColorIndex = wdYellow 
 .ForegroundPatternColorIndex = wdBlack 
End With

See also

Paragraph Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.