PathSegmentCollection Constructeurs

Définition

Initialise une nouvelle instance de la classe PathSegmentCollection.

Surcharges

PathSegmentCollection()

Initialise une nouvelle instance de la classe PathSegmentCollection.

PathSegmentCollection(IEnumerable<PathSegment>)

Initialise une nouvelle instance de la classe PathSegmentCollection avec la collection d'objets PathSegment spécifiée.

PathSegmentCollection(Int32)

Initialise une nouvelle instance de la classe PathSegmentCollection avec la capacité spécifiée, ou le nombre d'objets PathSegment que la collection est initialement capable de stocker.

PathSegmentCollection()

Initialise une nouvelle instance de la classe PathSegmentCollection.

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

S’applique à

PathSegmentCollection(IEnumerable<PathSegment>)

Initialise une nouvelle instance de la classe PathSegmentCollection avec la collection d'objets PathSegment spécifiée.

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

Paramètres

collection
IEnumerable<PathSegment>

Collection d'objets PathSegment constituant l'élément PathSegmentCollection.

Exceptions

collection a la valeur null.

S’applique à

PathSegmentCollection(Int32)

Initialise une nouvelle instance de la classe PathSegmentCollection avec la capacité spécifiée, ou le nombre d'objets PathSegment que la collection est initialement capable de stocker.

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

Paramètres

capacity
Int32

Nombre d'objets PathSegment que la collection est initialement capable de stocker.

S’applique à