Paragraphs.Shading Property

Word Developer Reference

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

Syntax

expression.Shading

expression   Required. A variable that represents a Paragraphs collection.

Example

This example applies yellow shading to the all paragraphs in the selection.

Visual Basic for Applications
  With Selection.Paragraphs.Shading
    .Texture = wdTexture12Pt5Percent
    .BackgroundPatternColorIndex = wdYellow
    .ForegroundPatternColorIndex = wdBlack
End With

See Also