PathSegmentCollection Construtores

Definição

Inicializa uma nova instância da PathSegmentCollection classe.

Sobrecargas

Name Description
PathSegmentCollection()

Inicializa uma nova instância da PathSegmentCollection classe.

PathSegmentCollection(IEnumerable<PathSegment>)

Inicializa uma nova instância da PathSegmentCollection classe com a coleção especificada de PathSegment objetos.

PathSegmentCollection(Int32)

Inicializa uma nova instância da PathSegmentCollection classe com a capacidade especificada, ou seja, o número de PathSegment objetos que a coleção é inicialmente capaz de armazenar.

PathSegmentCollection()

Inicializa uma nova instância da PathSegmentCollection classe.

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

Aplica-se a

PathSegmentCollection(IEnumerable<PathSegment>)

Inicializa uma nova instância da PathSegmentCollection classe com a coleção especificada de PathSegment objetos.

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>

A coleção de PathSegment objetos que compõem o PathSegmentCollection.

Exceções

collection é null.

Aplica-se a

PathSegmentCollection(Int32)

Inicializa uma nova instância da PathSegmentCollection classe com a capacidade especificada, ou seja, o número de PathSegment objetos que a coleção é inicialmente capaz de armazenar.

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

O número de PathSegment objetos que a coleção é inicialmente capaz de armazenar.

Aplica-se a