Columns.Shading property (Word)

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

Syntax

expression. Shading

expression Required. A variable that represents a 'Columns' collection.

Example

This example applies horizontal line texture to all columns in the first table in the active document.

If ActiveDocument.Tables.Count >= 1 Then 
 With ActiveDocument.Tables(1).Columns.Shading 
 .Texture = wdTextureDiagonalDown 
 End With 
End If

See also

Columns Collection 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.