Skip to content

Latest commit

 

History

History
45 lines (28 loc) · 918 Bytes

Word.Columns.Shading.md

File metadata and controls

45 lines (28 loc) · 918 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Columns.Shading property (Word)
vbawd10.chm155910247
vbawd10.chm155910247
Word.Columns.Shading
8dd27658-7208-86ae-09b1-bf4f89280402
06/08/2017
medium

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

[!includeSupport and feedback]