Udostępnij za pośrednictwem


Table.Shading Property (Word)

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

Syntax

expression .Shading

expression Required. A variable that represents a Table object.

Example

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

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

See Also

Concepts

Table Object Members

Table Object