FreezableCollection<T>.Clone メソッド
定義
この FreezableCollection<T> とそのコンテンツの変更可能な複製を作成し、詳細コピーを作成します。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)
戻り値
このコレクションとそのコンテンツの変更可能なコピー。A modifiable copy of this collection and its contents. コピーの IsFrozen 値は false
です。The copy's IsFrozen value is false
.
注釈
このメソッドは、便宜上、厳密に型指定された実装を使用して、継承されたメソッドをシャドウ Animatable.Clone します。This method shadows the inherited Animatable.Clone method with a strongly typed implementation for convenience.