TransformCollection コンストラクター

定義

TransformCollection クラスの新しいインスタンスを初期化します。

オーバーロード

TransformCollection()

TransformCollection クラスの新しいインスタンスを初期化します。

TransformCollection(IEnumerable<Transform>)

TransformCollection オブジェクトの指定したコレクションからコピーされた項目を格納し、コピーされた項目数に一致する初期量を持つ、Transform クラスの新しいインスタンスを初期化します。

TransformCollection(Int32)

指定された容量を使用して TransformCollection クラスの新しいインスタンスを初期化します。

TransformCollection()

TransformCollection クラスの新しいインスタンスを初期化します。

public:
 TransformCollection();
public TransformCollection ();
Public Sub New ()

適用対象

TransformCollection(IEnumerable<Transform>)

TransformCollection オブジェクトの指定したコレクションからコピーされた項目を格納し、コピーされた項目数に一致する初期量を持つ、Transform クラスの新しいインスタンスを初期化します。

public:
 TransformCollection(System::Collections::Generic::IEnumerable<System::Windows::Media::Transform ^> ^ collection);
public TransformCollection (System.Collections.Generic.IEnumerable<System.Windows.Media.Transform> collection);
new System.Windows.Media.TransformCollection : seq<System.Windows.Media.Transform> -> System.Windows.Media.TransformCollection
Public Sub New (collection As IEnumerable(Of Transform))

パラメーター

collection
IEnumerable<Transform>

新しい TransformCollection に項目がコピーされたコレクション。

例外

collectionnullです。

適用対象

TransformCollection(Int32)

指定された容量を使用して TransformCollection クラスの新しいインスタンスを初期化します。

public:
 TransformCollection(int capacity);
public TransformCollection (int capacity);
new System.Windows.Media.TransformCollection : int -> System.Windows.Media.TransformCollection
Public Sub New (capacity As Integer)

パラメーター

capacity
Int32

このコレクションが最初に格納できる Transform オブジェクトの数。

適用対象