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.

Исключения

collection имеет значение null.

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

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.

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