DrawingGroup.Clone Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a modifiable deep copy of this DrawingGroup and makes deep copies of its values.
public:
System::Windows::Media::DrawingGroup ^ Clone();
public System.Windows.Media.DrawingGroup Clone ();
override this.Clone : unit -> System.Windows.Media.DrawingGroup
Public Function Clone () As DrawingGroup
Returns
A modifiable clone of the current object. The IsFrozen property of the cloned object returns false
even if the IsFrozen property of the source is true
.
Remarks
Use this method to produce modifiable copies of read-only Freezable objects. For convenience, this method shadows the inherited version with a strongly typed implementation.
When this method copies dependency properties, it copies resource references and data bindings even though they might no longer resolve. It does not copy animations or their current values.
For more information, see Freezable.Clone.