hasZ property
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);
});
}
Implementation
set hasZ(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_TableDescription_setHasZ(_handle, value, errorHandler);
});
}