hasM property

bool hasM

True if the feature geometries should contain M values.

The default value is false.

Implementation

bool get hasM {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_TableDescription_getHasM(
      _handle,
      errorHandler,
    );
  });
}
void hasM=(bool value)

Implementation

set hasM(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_TableDescription_setHasM(
      _handle,
      value,
      errorHandler,
    );
  });
}