Rows.Shading Property

Word Developer Reference

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

Syntax

expression.Shading

expression   Required. A variable that represents a Rows collection.

Example

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

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

This example applies horizontal line texture to the first row in table one.

Visual Basic for Applications
  If ActiveDocument.Tables.Count >= 1 Then
    With ActiveDocument.Tables(1).Rows(1).Shading
        .Texture = wdTextureHorizontal
    End With
End If

This example applies 10 percent shading to the first word in the active document.

Visual Basic for Applications
  ActiveDocument.Words(1).Shading.Texture = wdTexture10Percent

See Also