API Documentation > CorelDRAW > 2025-v26 > CloneLink > IVGCloneLink
CloneLink.CloneParent property
Gets the clone parent
Syntax:
Property Get CloneParent() As Shape
Remarks:
The CloneParent property returns the parent (control) object for the cloned object. In order for this property to be effective, the cloned object must be the selected object.
Examples:
The following VBA example removes the fill from the clone's parent object . If the fill link is not broken, the cloned object has no fill. This example assumes that the cloned object is currently selected
Sub Test()
ActiveShape.CloneLink.CloneParent.Fill.ApplyNoFill 
End Sub