PathFigureCollection コンストラクター

定義

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

オーバーロード

PathFigureCollection()

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

PathFigureCollection(IEnumerable<PathFigure>)

指定した PathFigureCollection オブジェクトを格納する、PathFigure クラスの新しいインスタンスを初期化します。

PathFigureCollection(Int32)

指定した数の PathFigureCollection オブジェクトを最初に格納できる PathFigure クラスの新しいインスタンスを初期化します。

PathFigureCollection()

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

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

適用対象

PathFigureCollection(IEnumerable<PathFigure>)

指定した PathFigureCollection オブジェクトを格納する、PathFigure クラスの新しいインスタンスを初期化します。

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

パラメーター

collection
IEnumerable<PathFigure>

PathFigure のジオメトリを集合的に構成する Path オブジェクトのコレクション。

例外

collectionnullです。

適用対象

PathFigureCollection(Int32)

指定した数の PathFigureCollection オブジェクトを最初に格納できる PathFigure クラスの新しいインスタンスを初期化します。

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

パラメーター

capacity
Int32

この PathFigureCollection の初期量。

適用対象