Compartilhar via


System.VerticalResolution Property

Word Developer Reference

Returns the vertical screen resolution in pixels. Read-only Long.

Syntax

expression.VerticalResolution

expression   An expression that returns a System object.

Example

This example displays the current screen resolution (for example, "1024 x 768").

Visual Basic for Applications
  horz = System.HorizontalResolution
vert = System.VerticalResolution
MsgBox "Resolution = " & horz & " x " & vert

See Also