API Documentation > CorelDRAW > 2025-v26 > Shape > IVGShape
Shape.Clones property
Returns the collection of cloned shapes
Syntax:
Property Get Clones() As ShapeRange
Remarks:
The Clones property returns a shape range (or ShapeRange object) containing all cloned shapes for the specified clone-control object.
Examples:
The following VBA example restores fill links for all clones of the currently selected shape.
Sub Test()
Dim s As Shape
For Each s In ActiveShape.Clones
  s.CloneLink.FillLinked = True
Next s 
End Sub