Object Model Reference : Classes : B : Bitmap : Properties : Bitmap.ResolutionY |
Property ResolutionY As Long
Member of Bitmap
The ResolutionY property returns the vertical resolution of a bitmap in DPI.
The ResolutionY property returns a read-only value.
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 |
Copyright 2013 Corel Corporation. All rights reserved.