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