FreezableCollection<T>.Clone Method

Definition

Creates a modifiable clone of this FreezableCollection<T> and its contents, making deep copies. If this collection (or its contents) has animated dependency properties, the property's base value is copied, not its current animated value.

public:
 System::Windows::FreezableCollection<T> ^ Clone();
public System.Windows.FreezableCollection<T> Clone ();
override this.Clone : unit -> System.Windows.FreezableCollection<'T (requires 'T :> System.Windows.DependencyObject)>
Public Function Clone () As FreezableCollection(Of T)

Returns

A modifiable copy of this collection and its contents. The copy's IsFrozen value is false.

Remarks

This method shadows the inherited Animatable.Clone method with a strongly typed implementation for convenience.

Applies to

See also