controlPoint2 property
A point tangent to the end of the segment.
Implementation
ArcGISPoint get controlPoint2 {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_CubicBezierSegment_getControlPoint2(
_handle,
errorHandler,
);
});
return ArcGISPoint._fromHandle(
objectHandle,
)!;
}