PathFigure Конструкторы

Определение

Инициализирует новый экземпляр класса PathFigure.

Перегрузки

PathFigure()

Инициализирует новый экземпляр класса PathFigure.

PathFigure(Point, IEnumerable<PathSegment>, Boolean)

Инициализирует новый экземпляр класса PathFigure заданными свойствами StartPoint, Segments и IsClosed.

PathFigure()

Инициализирует новый экземпляр класса PathFigure.

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

Применяется к

PathFigure(Point, IEnumerable<PathSegment>, Boolean)

Инициализирует новый экземпляр класса PathFigure заданными свойствами StartPoint, Segments и IsClosed.

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)

Параметры

start
Point

Объект StartPoint для PathFigure.

segments
IEnumerable<PathSegment>

Объект Segments для PathFigure.

closed
Boolean

Объект IsClosed для PathFigure.

Применяется к