allowTrueCurvesUpdates property

bool allowTrueCurvesUpdates

True if the service allows curve geometries to be updated, false otherwise.

This property can only be true if ArcGISFeatureServiceInfo.supportsTrueCurve is true.

If this property is true and ArcGISFeatureServiceInfo.onlyAllowTrueCurveUpdatesByTrueCurveClients is false, features with curve geometries can be updated by any client. This includes cases where the client provides a densified geometry to update the curve geometry.

By default, this API is not a true curve-enabled client. Use ArcGISEnvironment.serviceCurveGeometryMode to change this behavior.

Implementation

bool get allowTrueCurvesUpdates {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ArcGISFeatureServiceInfo_getAllowTrueCurvesUpdates(
        _handle, errorHandler);
  });
}