API Documentation
>
CorelDRAW
>
2025-v26
>
Bitmap
>
IVGBitmap
Bitmap.ResolutionY property
Gets the bitmap's vertical resolution
Syntax:
Property
Get
ResolutionY
(
)
As
Long
Remarks:
The
ResolutionY
property returns the vertical resolution of a bitmap in DPI.
Examples:
The following VBA example displays the horizontal and vertical resolution of a bitmap object.
Sub Size() With ActiveShape.Bitmap MsgBox .ResolutionX MsgBox .ResolutionY End With End Sub