VerticalResolution Property

Applies To

System object.

Description

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

See Also

HorizontalResolution property.

Example

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

horz = System.HorizontalResolution
vert = System.VerticalResolution
MsgBox "Resolution = " & horz & " x " & vert