API Documentation > CorelDRAW > 2025-v26 > Bitmap > IVGBitmap
Bitmap.SizeHeight property
Gets the bitmap's vertical size (height)
Syntax:
Property Get SizeHeight() As Long
Remarks:
The SizeHeight property returns the vertical size (height) 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