Part QML Type
A mutable collection of Segments that together define the shape of a part in a Multipart geometry under construction. More...
Import Statement: | import Esri.ArcGISRuntime 100.10 |
Since: | Esri.ArcGISRuntime 100.0 |
Inherits: |
Properties
- empty : bool
- pointCount : int
- segmentCount : int
- spatialReference : SpatialReference
Signals
Methods
- int addPoint(Point point)
- int addPointXY(double x, double y)
- int addPointXYZ(double x, double y, double z)
- void addPoints(list<Point> points)
- int addSegment(Segment segment)
- Point endPoint()
- int endPointIndexFromSegmentIndex(int segmentIndex)
- void insertPoint(int pointIndex, Point point)
- void insertPointXY(int pointIndex, double x, double y)
- void insertPointXYZ(int pointIndex, double x, double y, double z)
- void insertSegment(int segmentIndex, Segment segment)
- Point point(int pointIndex)
- ImmutablePointCollection points()
- void removeAll()
- void removePoint(int pointIndex)
- void removeSegment(int segmentIndex)
- Segment segment(int segmentIndex)
- int segmentEndPointIndexFromPointIndex(int pointIndex)
- int segmentIndexFromEndPointIndex(int pointIndex)
- int segmentIndexFromStartPointIndex(int pointIndex)
- int segmentStartPointIndexFromPointIndex(int pointIndex)
- void setPoint(int pointIndex, Point point)
- void setSegment(int segmentIndex, Segment segment)
- Point startPoint()
- int startPointIndexFromSegmentIndex(int segmentIndex)
Detailed Description
This type is used in PolygonBuilder and PolylineBuilder, and by the MultipartBuilder parts property.
The spatial reference must be set before adding points or segments and cannot be changed after points or segments have been added.
Use the inherited methods to define and change the shape of the geometry by adding, removing, or changing its segments. Additionally, the addPoint and removePoint Point-based helper methods allow working with points that represent the vertices of the part, instead of working with segments.
The spatial reference of any geometries added to a part must match that of the part, or be unspecified (in which case the geometry is assumed to have the same spatial reference as the part). Added geometries are not reprojected.
This QML type supports the following default properties. A default property may be declared inside another declared object without being assigned explicitly to a property.
Type | Default Property |
---|---|
SpatialReference | spatialReference |
Segment | segment |
Point | point |
Property Documentation
[default] spatialReference : SpatialReference |
The SpatialReference of the Part.
Note: The SpatialReference can only be changed while the Part is empty
.
See also empty.
Signal Documentation
Emitted when the empty property changes.
Note: The corresponding handler is onEmptyChanged
.
Emitted when the pointCount property changes.
Note: The corresponding handler is onPointCountChanged
.
Emitted when the segmentCount property changes.
Note: The corresponding handler is onSegmentCountChanged
.
Emitted when the spatialReference property changes.
Note: The corresponding handler is onSpatialReferenceChanged
.
Method Documentation
int addPoint(Point point) |
Adds a new point to the end of the part.
A new line segment will be added to connect the new point to the previous point. The points in the part are the start and end points of segments. If this is the first point in an empty segment, a single closed segment is added using the same start and end point. Adding a second point will update this line segment to gain a distinct end point. Adding a third or more points will add new line segments.
Returns the index where the Point was added or -1
on error.
Add a new Point to the end of the part by specifying the point's x, and y coordinates.
A new line segment will be added to connect the new point to the previous point. The points in the part are the start and end points of segments. If this is the first point in an empty segment, a single closed segment is added using the same start and end point. Adding a second point will update this line segment to gain a distinct end point. Adding a third or more points will add new line segments.
Returns the index where the point was added or -1
on error.
Note: the coordinates must be in the spatial reference of the Part.
Adds a point to the Part from x, y and z values.
Adds a new Point to the end of the part by specifying the point's x, y, and z coordinates. A new line segment will be added to connect the new point to the previous.
A new line segment will be added to connect the new point to the previous point. The points in the part are the start and end points of segments. If this is the first point in an empty segment, a single closed segment is added using the same start and end point. Adding a second point will update this line segment to gain a distinct end point. Adding a third or more points will add new line segments.
void addPoints(list<Point> points) |
Adds a list of points to the Part.
This method was introduced in Esri.ArcGISRuntime 100.1.
int addSegment(Segment segment) |
A new segment is added to the end.
If the start point of the segment matches the previous end point, the segment will share this point. The count of points will increase by 1 if the segment connects, or 2 points if it is disconnected. A more efficient way to add a LineSegment to a part is to use one of the addPoint methods. For example Part::addPoint.
Returns the index where the Segment was added or -1
on error.
Point endPoint() |
Gets the end point of this part.
Returns null
if there are no points in this part.
Gets the end point index from the given segmentIndex.
Returns the end point index or -1
on error or invalid index.
void insertPoint(int pointIndex, Point point) |
Inserts a point into the part at the specified pointIndex.
Line segments will be added to connect the point to adjacent segments. The point index can be equal to the point count and this is equivalent to adding a point to the end of the collection. The points in the part are the start and end points of segments. An existing segment connecting the point before or after the point index is removed. Inserting a new point will insert new line segments connecting the adjacent points.
Inserts a Point specified by its x and y coordinates into the part at the specified pointIndex.
Line segments will be added to connect the point to adjacent segments. The point index can be equal to the point count and this is equivalent to adding a point to the end of the collection. The points in the part are the start and end points of segments. An existing segment connecting the point before or after the point index is removed. Inserting a new point will insert new line segments connecting the adjacent points.
.
Inserts a point specified by its x, y, and z coordinates into the part at the specified pointIndex.
Line segments will be added to connect the point to adjacent segments. The point index can be equal to the point count and this is equivalent to adding a point to the end of the collection. The points in the part are the start and end points of segments. An existing segment connecting the point before or after the point index is removed. Inserting a new point will insert new line segments connecting the adjacent points.
The coordinates must be in the spatial reference of the Part.
void insertSegment(int segmentIndex, Segment segment) |
Inserts segment at segmentIndex.
Point point(int pointIndex) |
ImmutablePointCollection points() |
Gets the collection of points in this part.
Segment segment(int segmentIndex) |
Gets the Segment at segmentIndex.
Returns the Segment or null
if the index isn't valid.
See also setSegment().
Gets the segment end point index from the given pointIndex.
Returns the segment end point index or -1
on error or invalid index.
Gets the segment index from the end point index pointIndex.
Returns the segment point index or -1
on error or invalid index.
Gets the segment index from the start point index pointIndex.
Returns the segment point index or -1
on error or invalid index.
Gets the segment start point index from the given pointIndex.
Returns the segment start point index or -1
on error or invalid index.
void setPoint(int pointIndex, Point point) |
Reassigns the point at pointIndex to point.
See also point().
void setSegment(int segmentIndex, Segment segment) |
Reassigns the segment at segmentIndex to segment.
See also segment().
Point startPoint() |
Gets the start point of this part.
Returns null
if there are no points in this part.
Gets the start point index from the given segmentIndex.
Returns the start point index or -1
on error or invalid index.