PathSegmentCollection Constructors

Definitie

Initialiseert een nieuw exemplaar van de PathSegmentCollection klasse.

Overloads

Name Description
PathSegmentCollection()

Initialiseert een nieuw exemplaar van de PathSegmentCollection klasse.

PathSegmentCollection(IEnumerable<PathSegment>)

Initialiseert een nieuw exemplaar van de PathSegmentCollection klasse met de opgegeven verzameling PathSegment objecten.

PathSegmentCollection(Int32)

Initialiseert een nieuw exemplaar van de PathSegmentCollection klasse met de opgegeven capaciteit of het aantal PathSegment objecten dat de verzameling in eerste instantie kan opslaan.

PathSegmentCollection()

Initialiseert een nieuw exemplaar van de PathSegmentCollection klasse.

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

Van toepassing op

PathSegmentCollection(IEnumerable<PathSegment>)

Initialiseert een nieuw exemplaar van de PathSegmentCollection klasse met de opgegeven verzameling PathSegment objecten.

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>

De verzameling PathSegment objecten waaruit de PathSegmentCollection.

Uitzonderingen

collection is null.

Van toepassing op

PathSegmentCollection(Int32)

Initialiseert een nieuw exemplaar van de PathSegmentCollection klasse met de opgegeven capaciteit of het aantal PathSegment objecten dat de verzameling in eerste instantie kan opslaan.

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

Het aantal PathSegment objecten dat de verzameling in eerste instantie kan opslaan.

Van toepassing op