言語

GeneralTransformCollection コンストラクター

定義

新しい GeneralTransformCollection オブジェクトを作成します。

オーバーロード

名前 説明
GeneralTransformCollection()

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

GeneralTransformCollection(IEnumerable<GeneralTransform>)

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

GeneralTransformCollection(Int32)

指定した容量を使用して、 GeneralTransformCollection クラスの新しいインスタンスを初期化するか、コレクションが最初に格納できる GeneralTransform オブジェクトの数を初期化します。

GeneralTransformCollection()

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

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

適用対象

GeneralTransformCollection(IEnumerable<GeneralTransform>)

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

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

パラメーター

collection
IEnumerable<GeneralTransform>

新しいコレクション クラスの初期オブジェクト。

例外

collectionnullです。

適用対象

GeneralTransformCollection(Int32)

指定した容量を使用して、 GeneralTransformCollection クラスの新しいインスタンスを初期化するか、コレクションが最初に格納できる GeneralTransform オブジェクトの数を初期化します。

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

パラメーター

capacity
Int32

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

適用対象