Previous Document Next Document

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


Bitmap.IsEPS

Property IsEPS As Boolean

Description

Member of Bitmap

The IsEPS property returns True if the bitmap is a placeholder in the EPS format.

The IsEPS property returns a read-only value.

VBA example

The following VBA example searches for a header in the EPS format. If one is found, it is selected.

Sub Test()
 Dim s As Shape
 For Each s In ActivePage.Shapes
  s.Selected = False
  If s.Type = cdrBitmapShape Then
   If s.Bitmap.IsEPS Then s.Selected = True
  End If
 Next s
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.