PathGeometry コンストラクター

定義

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

オーバーロード

PathGeometry()

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

PathGeometry(IEnumerable<PathFigure>)

PathGeometry を指定して、Figures クラスの新しいインスタンスを初期化します。

PathGeometry(IEnumerable<PathFigure>, FillRule, Transform)

指定した PathGeometryFigures、および FillRule を使用して、Transform クラスの新しいインスタンスを初期化します。

PathGeometry()

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

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

適用対象

PathGeometry(IEnumerable<PathFigure>)

PathGeometry を指定して、Figures クラスの新しいインスタンスを初期化します。

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

パラメーター

figures
IEnumerable<PathFigure>

Figures の内容を記述する PathGeometryPath

適用対象

PathGeometry(IEnumerable<PathFigure>, FillRule, Transform)

指定した PathGeometryFigures、および FillRule を使用して、Transform クラスの新しいインスタンスを初期化します。

public:
 PathGeometry(System::Collections::Generic::IEnumerable<System::Windows::Media::PathFigure ^> ^ figures, System::Windows::Media::FillRule fillRule, System::Windows::Media::Transform ^ transform);
public PathGeometry (System.Collections.Generic.IEnumerable<System.Windows.Media.PathFigure> figures, System.Windows.Media.FillRule fillRule, System.Windows.Media.Transform transform);
new System.Windows.Media.PathGeometry : seq<System.Windows.Media.PathFigure> * System.Windows.Media.FillRule * System.Windows.Media.Transform -> System.Windows.Media.PathGeometry
Public Sub New (figures As IEnumerable(Of PathFigure), fillRule As FillRule, transform As Transform)

パラメーター

figures
IEnumerable<PathFigure>

Figures の内容を記述する PathGeometryPath

fillRule
FillRule

PathGeometryFillRule

transform
Transform

適用される変換を指定する Transform

適用対象