Compartilhar via


PathFigure Construtores

Definição

Inicializa uma nova instância da classe PathFigure.

Sobrecargas

PathFigure()

Inicializa uma nova instância da classe PathFigure.

PathFigure(Point, IEnumerable<PathSegment>, Boolean)

Inicializa uma nova instância da classe PathFigure com os valores StartPoint, Segments e IsClosed especificados.

PathFigure()

Inicializa uma nova instância da classe PathFigure.

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

Aplica-se a

PathFigure(Point, IEnumerable<PathSegment>, Boolean)

Inicializa uma nova instância da classe PathFigure com os valores StartPoint, Segments e IsClosed especificados.

public:
 PathFigure(System::Windows::Point start, System::Collections::Generic::IEnumerable<System::Windows::Media::PathSegment ^> ^ segments, bool closed);
public PathFigure (System.Windows.Point start, System.Collections.Generic.IEnumerable<System.Windows.Media.PathSegment> segments, bool closed);
new System.Windows.Media.PathFigure : System.Windows.Point * seq<System.Windows.Media.PathSegment> * bool -> System.Windows.Media.PathFigure
Public Sub New (start As Point, segments As IEnumerable(Of PathSegment), closed As Boolean)

Parâmetros

start
Point

O StartPoint para o PathFigure.

closed
Boolean

O IsClosed para o PathFigure.

Aplica-se a