TileBrush.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 copy of this TileBrush by making deep copies of its values.
public:
System::Windows::Media::TileBrush ^ Clone();
public System.Windows.Media.TileBrush Clone ();
override this.Clone : unit -> System.Windows.Media.TileBrush
Public Function Clone () As TileBrush
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.