PathSegmentCollection コンストラクター

定義

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

オーバーロード

名前 説明
PathSegmentCollection()

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

PathSegmentCollection(IEnumerable<PathSegment>)

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

PathSegmentCollection(Int32)

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

PathSegmentCollection()

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

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

適用対象

PathSegmentCollection(IEnumerable<PathSegment>)

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

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

パラメーター

collection
IEnumerable<PathSegment>

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

例外

collectionnullです。

適用対象

PathSegmentCollection(Int32)

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

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

パラメーター

capacity
Int32

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

適用対象