API Documentation
>
CorelDRAW
>
2025-v26
>
Effect
>
IVGEffect
Effect.Clones property
Gets the collection of effects cloned from the current object
Syntax:
Property
Get
Clones
(
)
As
Effects
Remarks:
The
Clones
property returns a collection of effect objects comprised of clones of the current effect.
Examples:
The following VBA example shows the number of effects cloned from the current effect.
Sub Test() MsgBox ActiveShape.Effects(1).Clones.Count End Sub