Previous Document Next Document

Object Model Reference : Classes : B : Bitmap : Properties : Bitmap.ResolutionX


Bitmap.ResolutionX

Property ResolutionX As Long

Description

Member of Bitmap

The ResolutionX property returns the horizontal resolution of a bitmap in DPI

The ResolutionX property returns a read-only value.

VBA example

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.