Skip to content

Latest commit

 

History

History
61 lines (39 loc) · 1.24 KB

Word.Application.UsableWidth.md

File metadata and controls

61 lines (39 loc) · 1.24 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.UsableWidth property (Word)
vbawd10.chm158335009
vbawd10.chm158335009
Word.Application.UsableWidth
e5ea64f7-2a7a-fdaa-20ff-fdf6196de874
06/08/2017
medium

Application.UsableWidth property (Word)

Returns the maximum width (in points) to which you can set the width of a Microsoft Word document window. Read-only Long.

Syntax

expression.UsableWidth

expression A variable that represents an Application object.

Example

This example sets the size of the active document window to one quarter of the maximum allowable screen area.

With ActiveDocument.ActiveWindow 
 .WindowState = wdWindowStateNormal 
 .Top = 5 
 .Left = 5 
 .Height = (Application.UsableHeight*0.5) 
 .Width = (Application.UsableWidth*0.5) 
End With

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

Application Object

[!includeSupport and feedback]