PathSegment.Clone Method

Definition

Creates a modifiable copy of this PathSegment by making deep copies of its values.

public:
 System::Windows::Media::PathSegment ^ Clone();
public System.Windows.Media.PathSegment Clone ();
override this.Clone : unit -> System.Windows.Media.PathSegment
Public Function Clone () As PathSegment

Returns

A modifiable deep copy 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 although they might no longer resolve. It does not copy animations or their current values.

For more information, see Freezable.Clone.

Applies to