PointsToScreenPixelsY Method

Microsoft Excel Visual Basic

Converts a vertical measurement from points (document coordinates) to screen pixels (screen coordinates). Returns the converted measurement as a Long value.

expression.PointsToScreenPixelsY(Points)

expression    An expression that returns a Window object.

Points    Required Long. The number of points vertically along the left edge of the document window, starting from the top.

Example

This example determines the height and width (in pixels) of the selected cells in the active window and returns the values in the lWinWidth and lWinHeight variables.

With ActiveWindow
    lWinWidth = _
        .PointsToScreenPixelsX(.Selection.Width)
    lWinHeight = _
        .PointsToScreenPixelsY(.Selection.Height)
End With