centerPoint property

ArcGISPoint centerPoint

The center point of the ellipse that this segment is defined upon.

Implementation

ArcGISPoint get centerPoint {
  final objectHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_EllipticArcSegment_getCenterPoint(
        _handle, errorHandler);
  });
  return ArcGISPoint._fromHandle(objectHandle)!;
}