GeometryCollection 构造函数

定义

初始化 GeometryCollection 类的新实例。

重载

GeometryCollection()

初始化 GeometryCollection 类的新实例。

GeometryCollection(IEnumerable<Geometry>)

使用指定的 GeometryCollection 对象集合初始化 Geometry 类的新实例。

GeometryCollection(Int32)

使用指定的容量或该集合最初可存储的 GeometryCollection 对象数来初始化 Geometry 类的新实例。

GeometryCollection()

初始化 GeometryCollection 类的新实例。

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

适用于

GeometryCollection(IEnumerable<Geometry>)

使用指定的 GeometryCollection 对象集合初始化 Geometry 类的新实例。

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

参数

collection
IEnumerable<Geometry>

构成 GeometryGeometryCollection 对象的集合。

适用于

GeometryCollection(Int32)

使用指定的容量或该集合最初可存储的 GeometryCollection 对象数来初始化 Geometry 类的新实例。

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

参数

capacity
Int32

集合最初能够存储的 Geometry 对象数。

适用于