Share via


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

適用対象