TableStyleElement.Borders property (Excel)

Returns a Borders collection that represents the borders of a TableStyleElement object. Read-only.

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.

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

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.