geometryType property
The type of the output geometry.
Implementation
GeometryType get geometryType {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GeodesicEllipseParameters_getGeometryType(
_handle, errorHandler);
});
return GeometryType._fromCoreValue(coreValue);
}
Implementation
set geometryType(GeometryType value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_GeodesicEllipseParameters_setGeometryType(
_handle, value.coreValue, errorHandler);
});
}