UtilityGeometryTraceResult QML Type
The trace result comprised of a set of Geometry objects representing the network elements identified by the trace. More...
Import Statement: | import Esri.ArcGISRuntime |
Since: | Esri.ArcGISRuntime 100.9 |
Inherits: |
- List of all members, including inherited members
- UtilityGeometryTraceResult is part of QML Type List.
Properties
- multipoint : Multipoint
- polygon : Polygon
- polyline : Polyline
Signals
Detailed Description
The UtilityGeometryTraceResult exposes the geometry result with a property for each potential geometry type: Multipoint, Polyline, and Polygon. The geometry for these properties is the union of all geometries of that type returned by the trace. If the result does not include a certain geometry type, the corresponding property will be null
.
Note: You cannot declare or create a component of this type in QML code.
See also UtilityTraceResult.
Property Documentation
[read-only] multipoint : Multipoint |
The Multipoint that comprise the trace results (read-only).
The Multipoint is the union of all point geometries returned by the trace. If the result does not include points, this property will be null
.
[read-only] polygon : Polygon |
[read-only] polyline : Polyline |
Signal Documentation
multipointChanged() |
Emitted when the multipoint property changes.
Note: The corresponding handler is onMultipointChanged
.
polygonChanged() |
Emitted when the polygon property changes.
Note: The corresponding handler is onPolygonChanged
.
polylineChanged() |
Emitted when the polyline property changes.
Note: The corresponding handler is onPolylineChanged
.