startPoint property

ArcGISPoint? startPoint

The start point of the first segment in the part. Returns null if the collection is empty.

Implementation

ArcGISPoint? get startPoint {
  final objectHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ImmutablePart_getStartPoint(
      _handle,
      errorHandler,
    );
  });
  return ArcGISPoint._fromHandle(
    objectHandle,
  );
}