BottomPadding Property

Microsoft Word Visual Basic

expression.BottomPadding

expression    Required. An expression that returns one of the objects in the Applies To list.

Remarks

The setting of the BottomPadding property for a single cell overrides the setting of the BottomPadding property for the entire table.

Example

This example sets the bottom padding for the first table in the active document to 40 pixels.

ActiveDocument.Tables(1).BottomPadding = _
    PixelsToPoints(40, True)