Share via


Cells.Shading Property

Word Developer Reference

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

Syntax

expression.Shading

expression   A variable that represents a Cells object.

Example

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).Cells.Shading
        .Texture = wdTextureHorizontal
    End With
End If

See Also