VectorCollection 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
VectorCollection 클래스의 새 인스턴스를 초기화합니다.
오버로드
| Name | Description |
|---|---|
| VectorCollection() |
VectorCollection 클래스의 새 인스턴스를 초기화합니다. |
| VectorCollection(IEnumerable<Vector>) |
지정된 값 컬렉션 VectorCollection 에서 복사된 항목을 포함하고 복사된 항목 수와 동일한 초기 용량을 갖는 클래스의 새 인스턴스 Vector 를 초기화합니다. |
| VectorCollection(Int32) |
지정된 용량을 사용하여 클래스의 VectorCollection 새 인스턴스를 초기화합니다. |
VectorCollection()
VectorCollection 클래스의 새 인스턴스를 초기화합니다.
public:
VectorCollection();
public VectorCollection();
Public Sub New ()
적용 대상
VectorCollection(IEnumerable<Vector>)
지정된 값 컬렉션 VectorCollection 에서 복사된 항목을 포함하고 복사된 항목 수와 동일한 초기 용량을 갖는 클래스의 새 인스턴스 Vector 를 초기화합니다.
public:
VectorCollection(System::Collections::Generic::IEnumerable<System::Windows::Vector> ^ collection);
public VectorCollection(System.Collections.Generic.IEnumerable<System.Windows.Vector> collection);
new System.Windows.Media.VectorCollection : seq<System.Windows.Vector> -> System.Windows.Media.VectorCollection
Public Sub New (collection As IEnumerable(Of Vector))
매개 변수
- collection
- IEnumerable<Vector>
항목이 새 VectorCollection항목에 복사되는 컬렉션입니다.
예외
collection은 null입니다.
적용 대상
VectorCollection(Int32)
지정된 용량을 사용하여 클래스의 VectorCollection 새 인스턴스를 초기화합니다.
public:
VectorCollection(int capacity);
public VectorCollection(int capacity);
new System.Windows.Media.VectorCollection : int -> System.Windows.Media.VectorCollection
Public Sub New (capacity As Integer)