PointCollection コンストラクター

定義

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

オーバーロード

PointCollection()

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

PointCollection(IEnumerable<Point>)

PointCollection 値の指定したコレクションからコピーされた項目を格納し、コピーされた項目数に一致する初期量を持つ、Point クラスの新しいインスタンスを初期化します。

PointCollection(Int32)

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

PointCollection()

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

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

適用対象

PointCollection(IEnumerable<Point>)

PointCollection 値の指定したコレクションからコピーされた項目を格納し、コピーされた項目数に一致する初期量を持つ、Point クラスの新しいインスタンスを初期化します。

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

パラメーター

collection
IEnumerable<Point>

新しい PointCollection に項目がコピーされたコレクション。

例外

collectionnullです。

適用対象

PointCollection(Int32)

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

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

パラメーター

capacity
Int32

このコレクションが最初に格納できる Point 値の数。

適用対象