PointCollection Oluşturucular
Tanım
PointCollection sınıfının yeni bir örneğini başlatır.Initializes a new instance of the PointCollection class.
Aşırı Yüklemeler
PointCollection() |
PointCollection sınıfının yeni bir örneğini başlatır.Initializes a new instance of the PointCollection class. |
PointCollection(IEnumerable<Point>) |
PointCollectionBelirtilen değer koleksiyonundan kopyalanmış öğeleri içeren bir sınıfının yeni bir örneğini başlatır Point ve kopyalandığı öğe sayısıyla aynı ilk kapasiteye sahiptir.Initializes a new instance of the PointCollection class that contains items copied from the specified collection of Point values and has the same initial capacity as the number of items copied. |
PointCollection(Int32) |
Belirtilen kapasiteyle PointCollection sınıfının yeni bir örneğini başlatır.Initializes a new instance of the PointCollection class with the specified capacity. |
PointCollection()
PointCollection sınıfının yeni bir örneğini başlatır.Initializes a new instance of the PointCollection class.
public:
PointCollection();
public PointCollection ();
Public Sub New ()
Şunlara uygulanır
PointCollection(IEnumerable<Point>)
PointCollectionBelirtilen değer koleksiyonundan kopyalanmış öğeleri içeren bir sınıfının yeni bir örneğini başlatır Point ve kopyalandığı öğe sayısıyla aynı ilk kapasiteye sahiptir.Initializes a new instance of the PointCollection class that contains items copied from the specified collection of Point values and has the same initial capacity as the number of items copied.
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))
Parametreler
- collection
- IEnumerable<Point>
Öğeleri yeni içine kopyalanmış olan koleksiyon PointCollection .The collection whose items are copied to the new PointCollection.
Özel durumlar
collection
, null
değeridir.collection
is null
.
Şunlara uygulanır
PointCollection(Int32)
Belirtilen kapasiteyle PointCollection sınıfının yeni bir örneğini başlatır.Initializes a new instance of the PointCollection class with the specified capacity.
public:
PointCollection(int capacity);
public PointCollection (int capacity);
new System.Windows.Media.PointCollection : int -> System.Windows.Media.PointCollection
Public Sub New (capacity As Integer)
Parametreler
- capacity
- Int32
PointKoleksiyonun başlangıçta depolarken sahip olduğu değer sayısı.The number of Point values that the collection is initially capable of storing.