GeometryCollection コンストラクター

定義

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

オーバーロード

GeometryCollection()

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

GeometryCollection(IEnumerable<Geometry>)

指定した GeometryCollection オブジェクトのコレクションを使用して、Geometry クラスの新しいインスタンスを初期化します。

GeometryCollection(Int32)

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

GeometryCollection()

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

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

適用対象

GeometryCollection(IEnumerable<Geometry>)

指定した GeometryCollection オブジェクトのコレクションを使用して、Geometry クラスの新しいインスタンスを初期化します。

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

パラメーター

collection
IEnumerable<Geometry>

Geometry を構成する GeometryCollection オブジェクトのコレクション。

適用対象

GeometryCollection(Int32)

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

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

パラメーター

capacity
Int32

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

適用対象