geometryType property

GeometryType geometryType

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);
}
void geometryType=(GeometryType value)

Implementation

set geometryType(GeometryType value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_GeodesicEllipseParameters_setGeometryType(
        _handle, value.coreValue, errorHandler);
  });
}