Skip to main content
A newer version of this page is available. .

ShapeType Enum

Lists shape types that can be stored in the shapefile format.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v18.1.dll

Declaration

public enum ShapeType

Members

Name Description
Point

A point consists of a pair of XY-coordinates.

PolyLine

A set of vertices that consists of one or more connected sequences of two or more Points.

Polygon

A set of one ore more connected sequences of four or more Points that form a closed loop.

MultiPoint

A set of Points.

PointZ

A point consists of a triplet of XYZ-coordinates and a measure.

PolyLineZ

A set of vertices that consists of one or more connected sequences of two or more PointZs.

PolygonZ

A set of one ore more connected sequences of four or more PointZs that form a closed loop.

MultiPointZ

A set of PointZs.

PointM

A point consists of a pair of XY-coordinates and a measure.

PolyLineM

A set of vertices that consists of one or more connected sequences of two or more PointMs.

PolygonM

A set of one ore more connected sequences of four or more PointMs that form a closed loop.

MultiPointM

A set of PointMs.

Related API Members

The following properties accept/return ShapeType values:

Remarks

Refer to the ERSI Shapefile Technical Description document to learn more about shape types.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ShapeType enum.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also