| Name | Type | Description |
|---|---|---|
| Mode | {cdrImageType|Specifies the image type, and returns cdrImageType. |
|
| Dithered |
Boolean
|
Enables dithering if set to True (-1). |
| Transparent |
Boolean
|
Enables a transparent background if set to True (-1). |
| Resolution |
Long
|
Specifies the resolution. |
| AntiAliasing | Specifies the anti-aliasing, and a value of returns cdrAntiAliasingType. |
|
| UseColorProfile |
Boolean
|
Uses a color profile if set to True (-1). |
| AlwaysOverprintBlack |
Boolean
|
|
| OverprintBlackLimit |
Long
|
Sub Test() Dim r As Shape, s As Shape Set r = ActiveLayer.CreateRectangle(0, 0, 5, 5) r.Fill.UniformColor.CMYKAssign 100, 0, 0, 0 Set s = ActiveLayer.CreateEllipse2(3, 3, 2) s.Fill.UniformColor.CMYKAssign 0, 100, 100, 0 Set s = s.ConvertToBitmapEx(cdrCMYKColorImage, False, True) s.CreateDropShadow cdrDropShadowFlat, 80, 10, 0.5, -0.5, CreateCMYKColor(0, 50, 50, 50) r.CreateSelection s.Selected = True ActiveSelection.Group End Sub