PathSegmentCollection Construtores

Definição

Inicializa uma nova instância da classe PathSegmentCollection.

Sobrecargas

PathSegmentCollection()

Inicializa uma nova instância da classe PathSegmentCollection.

PathSegmentCollection(IEnumerable<PathSegment>)

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

PathSegmentCollection(Int32)

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

PathSegmentCollection()

Inicializa uma nova instância da classe PathSegmentCollection.

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

Aplica-se a

PathSegmentCollection(IEnumerable<PathSegment>)

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

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 objetos PathSegment que compõem o PathSegmentCollection.

Exceções

collection é null.

Aplica-se a

PathSegmentCollection(Int32)

Inicializa uma nova instância da classe PathSegmentCollection com a capacidade especificada ou o número de objetos PathSegment que a coleção é capaz de armazenar 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

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

Aplica-se a