Previous Document Next Document

Object Model Reference : Classes : S : Shape : Properties : Shape.Clones


Shape.Clones

Property Clones As ShapeRange

Description

Member of Shape

The Clones property returns a shape range (or ShapeRange object) containing all cloned shapes for the specified clone-control object.

The Clones property returns a read-only value.

VBA example

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.