PathSegmentCollection Constructores

Definición

Inicializa una nueva instancia de la clase PathSegmentCollection.

Sobrecargas

PathSegmentCollection()

Inicializa una nueva instancia de la clase PathSegmentCollection.

PathSegmentCollection(IEnumerable<PathSegment>)

Inicializa una nueva instancia de la clase PathSegmentCollection con la colección de objetos PathSegment especificada.

PathSegmentCollection(Int32)

Inicializa una nueva instancia de la clase PathSegmentCollection con la funcionalidad especificada o el número de objetos PathSegment que la colección puede almacenar inicialmente.

PathSegmentCollection()

Inicializa una nueva instancia de la clase PathSegmentCollection.

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

Se aplica a

PathSegmentCollection(IEnumerable<PathSegment>)

Inicializa una nueva instancia de la clase PathSegmentCollection con la colección de objetos PathSegment especificada.

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

Parámetros

collection
IEnumerable<PathSegment>

Colección de objetos PathSegment que forman el objeto PathSegmentCollection.

Excepciones

collection es null.

Se aplica a

PathSegmentCollection(Int32)

Inicializa una nueva instancia de la clase PathSegmentCollection con la funcionalidad especificada o el número de objetos PathSegment que la colección puede almacenar inicialmente.

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

Parámetros

capacity
Int32

Número de objetos PathSegment que la colección puede almacenar inicialmente.

Se aplica a