Window.PointsToScreenPixelsX (Excel)
Wandelt eine horizontale Messung von Punkten (Dokument Koordinaten) in Bildschirmpixel (Bildschirmkoordinaten) um.
PointsToScreenPixelsX (Points)
Points: Die Anzahl von horizontalen Punkten entlang dem oberen Rand des Dokumentfensters (beginnend von links).
With ActiveWindow
lWinWidth = _
.PointsToScreenPixelsX(.Selection.Width)
lWinHeight = _
.PointsToScreenPixelsY(.Selection.Height)
End With