LeftMargin Property

Applies To

PageSetup Object.

Description

Returns or sets the size of the left margin, in points (1/72 inch). Read-write.

Remarks

Margins are set or returned in points. Use the InchesToPoints or CentimetersToPoints function to convert.

See Also

BottomMargin Property, RightMargin Property, TopMargin Property.

Example

This example sets the left margin of Sheet1 to 1.5 inches.


Worksheets("Sheet1").PageSetup.LeftMargin = _
        Application.InchesToPoints(1.5)

This example sets the left margin of Sheet1 to 2 centimeters.


Worksheets("Sheet1").PageSetup.LeftMargin = _
        Application.CentimetersToPoints(2)

This example displays the current left margin setting for Sheet1.


marginInches = Worksheets("Sheet1").PageSetup.LeftMargin / _
    Application.InchesToPoints(1)
MsgBox "The current left margin is " & marginInches & " inches"