hasZ property

bool hasZ

True if the feature geometries should contain Z values.

The default value is false.

Implementation

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

Implementation

set hasZ(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_TableDescription_setHasZ(
      _handle,
      value,
      errorHandler,
    );
  });
}