PageSetup.HeaderMargin property (Excel)

Returns or sets the distance from the top of the page to the header, in points. Read/write Double.

Syntax

expression.HeaderMargin

expression A variable that represents a PageSetup object.

Remarks

Margins are set or returned in points. Use either the InchesToPoints method or the CentimetersToPoints method to do the conversion.

Example

This example sets the header margin of Sheet1 to 0.5 inch.

Worksheets("Sheet1").PageSetup.HeaderMargin = _ 
 Application.InchesToPoints(0.5)

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.