言語

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の初期容量。

適用対象