Previous Document Next Document
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 code example displays the horizontal and vertical resolution of a bitmap object.

Sub Size() 
 With ActiveShape.Bitmap 
  MsgBox .ResolutionX 
  MsgBox .ResolutionY 
 End With 
End Sub 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.