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

Определение

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

Перегрузки

PathSegmentCollection()

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

PathSegmentCollection(IEnumerable<PathSegment>)

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

PathSegmentCollection(Int32)

Инициализирует новый экземпляр класса PathSegmentCollection с заданной емкостью или числом объектов PathSegment, которое первоначально может хранить коллекция.

PathSegmentCollection()

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

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

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

PathSegmentCollection(IEnumerable<PathSegment>)

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

public:
 PathSegmentCollection(System::Collections::Generic::IEnumerable<System::Windows::Media::PathSegment ^> ^ collection);
public PathSegmentCollection (System.Collections.Generic.IEnumerable<System.Windows.Media.PathSegment> collection);
new System.Windows.Media.PathSegmentCollection : seq<System.Windows.Media.PathSegment> -> System.Windows.Media.PathSegmentCollection
Public Sub New (collection As IEnumerable(Of PathSegment))

Параметры

collection
IEnumerable<PathSegment>

Коллекция объектов PathSegment, составляющих данную коллекцию PathSegmentCollection.

Исключения

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

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

PathSegmentCollection(Int32)

Инициализирует новый экземпляр класса PathSegmentCollection с заданной емкостью или числом объектов PathSegment, которое первоначально может хранить коллекция.

public:
 PathSegmentCollection(int capacity);
public PathSegmentCollection (int capacity);
new System.Windows.Media.PathSegmentCollection : int -> System.Windows.Media.PathSegmentCollection
Public Sub New (capacity As Integer)

Параметры

capacity
Int32

Число объектов PathSegment, которое изначально может хранить коллекция.

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