ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Core.Geometry Namespace / Multipoint Class
Members Version

    Multipoint Class
    A Multipoint is a ordered collection of map points. To create a multipoint use the MultipointBuilderEx object.
    Object Model
    Multipoint ClassGeometry ClassEnvelope ClassReadOnlyPointCollection ClassMapPoint ClassSpatialReference Class
    Syntax
    public sealed class Multipoint : Geometry 
    Remarks
    A Multipoint is a one-dimensional geometry object which can be used to store a collection of point-based information.

    The interior of a multipoint is the set of points in the collection, the boundary is the empty set, and the exterior is the set of points that are not in the collection.

    A Multipoint is based upon the parent Geometry class. The Geometry class is immutable which means that you can not change its shape once it is created. If you need to modify a Multipoint once it has been created, use the MultipointBuilderEx class instead. The MultipointBuilderEx.ToGeometry method will provide you with the Multipoint object.

    Inheritance Hierarchy

    System.Object
       ArcGIS.Core.Geometry.Geometry
          ArcGIS.Core.Geometry.Multipoint

    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also