PointCollection 생성자

정의

PointCollection 클래스의 새 인스턴스를 초기화합니다.

오버로드

PointCollection()

PointCollection 클래스의 새 인스턴스를 초기화합니다.

PointCollection(IEnumerable<Point>)

지정된 PointCollection 값 컬렉션에서 복사된 항목이 포함되어 있고 복사된 항목의 수와 같은 초기 용량을 가지는 Point 클래스의 새 인스턴스를 초기화합니다.

PointCollection(Int32)

지정한 용량을 사용하여 PointCollection 클래스의 새 인스턴스를 초기화합니다.

PointCollection()

PointCollection 클래스의 새 인스턴스를 초기화합니다.

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

적용 대상

PointCollection(IEnumerable<Point>)

지정된 PointCollection 값 컬렉션에서 복사된 항목이 포함되어 있고 복사된 항목의 수와 같은 초기 용량을 가지는 Point 클래스의 새 인스턴스를 초기화합니다.

public:
 PointCollection(System::Collections::Generic::IEnumerable<System::Windows::Point> ^ collection);
public PointCollection (System.Collections.Generic.IEnumerable<System.Windows.Point> collection);
new System.Windows.Media.PointCollection : seq<System.Windows.Point> -> System.Windows.Media.PointCollection
Public Sub New (collection As IEnumerable(Of Point))

매개 변수

collection
IEnumerable<Point>

PointCollection에 복사되는 항목의 컬렉션입니다.

예외

collection이(가) null인 경우

적용 대상

PointCollection(Int32)

지정한 용량을 사용하여 PointCollection 클래스의 새 인스턴스를 초기화합니다.

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

매개 변수

capacity
Int32

컬렉션에 처음 저장할 수 있는 Point 값 수입니다.

적용 대상