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