DistanceFromBottom Property Example
This example adds a border around the first paragraph in the active document and sets the distance between the text and the bottom border to 6 points.
With ActiveDocument.Paragraphs(1).Borders
.Enable = True
.DistanceFromBottom = 6
End With
This example adds a border around each table in Sales.doc. The example also sets the distance between the text and the border to 3 points for the top and bottom borders, and 6 points for the left and right borders.
For Each myTable In Documents("Sales.doc").Tables
With myTable.Borders
.OutsideLineStyle = wdLineStyleSingle
.OutsideLineWidth = wdLineWidth150pt
.DistanceFromBottom = 3
.DistanceFromTop = 3
.DistanceFromLeft = 6
.DistanceFromRight = 6
End With
Next myTable