TextFrame.MarginBottom Property

Publisher Developer 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.

Syntax

expression.MarginBottom

expression   A variable that represents a TextFrame object.

Example

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

Visual Basic for Applications
  Sub SetPageMargins()
With ActiveDocument.LayoutGuides
    .MarginTop = Application.InchesToPoints(Value:=2)
    .<strong class="bterm">MarginBottom</strong> = Application.InchesToPoints(Value:=2)
    .MarginLeft = Application.InchesToPoints(Value:=2)
    .MarginRight = Application.InchesToPoints(Value:=2)
End With

End Sub

See Also