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 オブジェクトの数。

適用対象