TileBrush.CloneCurrentValue 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 object by making deep copies of its values. This method does not copy resource references, data bindings, or animations, although it does copy their current values.
public:
System::Windows::Media::TileBrush ^ CloneCurrentValue();
public System.Windows.Media.TileBrush CloneCurrentValue ();
override this.CloneCurrentValue : unit -> System.Windows.Media.TileBrush
Public Function CloneCurrentValue () As TileBrush
Returns
A modifiable deep copy of the current object. The IsFrozen property of the cloned object is 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.
For more information, see Freezable.CloneCurrentValue.