Share via


PageSetup.HeaderDistance Property

Word Developer Reference

Returns or sets the distance (in points) between the header and the top of the page. Read/write Single.

Syntax

expression.HeaderDistance

expression   A variable that represents a PageSetup object.

Example

This example displays the distance between the header and the top of the page. The PointsToInches method is used to convert points to inches.

Visual Basic for Applications
  Dim sngDistance As Single

sngDistance = ActiveDocument.PageSetup.HeaderDistance Msgbox PointsToInches(sngDistance) & " inches"

See Also