Polyline Builder
Creates a new polyline builder by copying the parts from the specified Polyline.
The SpatialReference of the new polyline builder will match that of the given Polyline. Use this constructor in workflows that create a modified version of an existing geometry, for example feature or graphic editing workflows. Polylines with curves are supported.
Since
200.1.0
Parameters
a Polyline from which to start this builder
a trailing lambda parameter from within which to configure the builder.
See also
Creates a new empty polyline builder with the specified SpatialReference. The SpatialReference cannot be changed after instantiation.
Since
200.1.0
Parameters
a SpatialReference from which to start this builder
a trailing lambda parameter from within which to configure the builder.
Creates a polyline builder with a list of MutablePart.
The spatial reference of the builder will be either the spatial reference of the first part or null if there are no parts.
Since
200.1.0
Parameters
the parts with which to create the builder. All parts must have the same spatial reference.
a trailing lambda parameter from within which to configure the builder.
Creates a polyline builder with a list of points.
The spatial reference of the builder will be either the given spatial reference, or the first Point's spatial reference or null if it is not defined by both.
Since
200.1.0
Parameters
the points with which to create the builder. All points must have the same spatial reference.
a trailing lambda parameter from within which to configure the builder.