GeometryCollection 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 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>
构成 Geometry 的 GeometryCollection 对象的集合。
适用于
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)