The Resolution property returns or specifies the document rendering resolution for bitmap-based effects (for example, drop shadows and interactive transparencies), measured in dots per inch (dpi).
Examples:
The following VBA example displays the current resolution. Sub Test()
MsgBox "Current document resolution is " & _
ActiveDocument.Resolution & " dpi"
End Sub