Skip to content

Latest commit

 

History

History
48 lines (30 loc) · 1.05 KB

Excel.Application.Width.md

File metadata and controls

48 lines (30 loc) · 1.05 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.Width property (Excel)
vbaxl10.chm133232
vbaxl10.chm133232
Excel.Application.Width
eeb8ff27-d219-bade-3e0b-aed6e34d17d7
04/05/2019
medium

Application.Width property (Excel)

Returns or sets a Double value that represents the distance, in points, from the left edge of the application window to its right edge.

Syntax

expression.Width

expression A variable that represents an Application object.

Remarks

If the window is minimized, Width is read-only and returns the width of the window icon.

Example

This example expands the active window to the maximum size available (assuming that the window isn't maximized).

With ActiveWindow 
 .WindowState = xlNormal 
 .Top = 1 
 .Left = 1 
 .Height = Application.UsableHeight 
 .Width = Application.UsableWidth 
End With

[!includeSupport and feedback]