startPoint property
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_MutablePart_getStartPoint(
_handle,
errorHandler,
);
});
return ArcGISPoint._fromHandle(
objectHandle,
);
}