Share via


MarginBottom Property [Publisher 2003 VBA Language Reference]

Returns or sets a Variant that represents the amount of space (in points) between the text and the bottom edge of a cell, text frame, or page. Read/write.

expression.MarginBottom

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

Example

This example sets the margins of the active publication to two inches.

Sub SetPageMargins()

    With ActiveDocument.LayoutGuides
        .MarginTop = Application.InchesToPoints(Value:=2)
        .MarginBottom = Application.InchesToPoints(Value:=2)
        .MarginLeft = Application.InchesToPoints(Value:=2)
        .MarginRight = Application.InchesToPoints(Value:=2)
    End With

End Sub

Applies to | Cell Object | LayoutGuides Object | TextFrame Object