Window.UsableHeight property (Word)
Returns the height (in points) of the active working area in the specified document window. Read-only Long. .
Syntax
expression.UsableHeight
expression A variable that represents a Window object.
Remarks
If none of the working area is visible in the document window, UsableHeight returns 1. To determine the actual available height, subtract 1 from the UsableHeight value.
Example
This example displays the size of the working area in the active document window.
With ActiveDocument.ActiveWindow
MsgBox "Working area height = " _
& .UsableHeight & vbLf _
& "Working area width = " _
& .UsableWidth
End With
See also
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.