Model3DCollection コンストラクター

定義

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

オーバーロード

Model3DCollection()

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

Model3DCollection(IEnumerable<Model3D>)

指定したコレクションを使用して、Model3DCollection クラスの新しいインスタンスを初期化します。

Model3DCollection(Int32)

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

Model3DCollection()

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

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

適用対象

Model3DCollection(IEnumerable<Model3D>)

指定したコレクションを使用して、Model3DCollection クラスの新しいインスタンスを初期化します。

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

パラメーター

collection
IEnumerable<Model3D>

Model3DCollection をインスタンス化するために使用するコレクション。

適用対象

Model3DCollection(Int32)

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

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

パラメーター

capacity
Int32

Model3DCollection の容量を指定する整数。

適用対象