PathSegmentCollection Constructors

Definition

Initializes a new instance of the PathSegmentCollection class.

Overloads

PathSegmentCollection()

Initializes a new instance of the PathSegmentCollection class.

PathSegmentCollection(IEnumerable<PathSegment>)

Initializes a new instance of the PathSegmentCollection class with the specified collection of PathSegment objects.

PathSegmentCollection(Int32)

Initializes a new instance of the PathSegmentCollection class with the specified capacity, or the number of PathSegment objects the collection is initially capable of storing.

PathSegmentCollection()

Initializes a new instance of the PathSegmentCollection class.

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

Applies to

PathSegmentCollection(IEnumerable<PathSegment>)

Initializes a new instance of the PathSegmentCollection class with the specified collection of PathSegment objects.

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))

Parameters

collection
IEnumerable<PathSegment>

The collection of PathSegment objects that make up the PathSegmentCollection.

Exceptions

collection is null.

Applies to

PathSegmentCollection(Int32)

Initializes a new instance of the PathSegmentCollection class with the specified capacity, or the number of PathSegment objects the collection is initially capable of storing.

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

Parameters

capacity
Int32

The number of PathSegment objects that the collection is initially capable of storing.

Applies to