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

適用対象