Edit

Share via


Cell.Shading property (Word)

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

Syntax

expression. Shading

expression A variable that represents a 'Cell' object.

Example

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

If ActiveDocument.Tables.Count >= 1 Then 
 With ActiveDocument.Tables(1).Rows(1).Cells(1).Shading 
 .Texture = wdTextureHorizontal 
 End With 
End If

See also

Cell 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.