Borders.DistanceFromBottom property (Word)

Returns or sets the space (in points) between the text and the bottom border. Read/write Long.

Syntax

expression. DistanceFromBottom

expression A variable that represents a 'Borders' object.

Remarks

Using this property with a page border, you can set either the space between the text and the bottom page border or the space between the bottom edge of the page and the bottom page border. Where the distance is measured from depends on the value of the DistanceFrom 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.

Dim tableLoop As Table 
 
For Each tableLoop In Documents("Sales.doc").Tables 
 With tableLoop.Borders 
 .OutsideLineStyle = wdLineStyleSingle 
 .OutsideLineWidth = wdLineWidth150pt 
 .DistanceFromBottom = 3 
 .DistanceFromTop = 3 
 .DistanceFromLeft = 6 
 .DistanceFromRight = 6 
 End With 
Next tableLoop

See also

Borders Collection Object

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.