Version Information
Version Added: Excel

Syntax

expression.Borders

expression A variable that represents a TableStyleElement object.

Example

This example sets the color of the top border of a table to red.

Visual Basic for Applications
With ActiveWorkbook.TableStyles("Table Style 4").TableStyleElements( _ xlWholeTable).Borders(xlEdgeTop) .Color = 255 .TintAndShade = 0 .Weight = 2 .LineStyle = 1 End With

See also: