returnGeometry property

bool returnGeometry

True if geometry values are returned in the results, otherwise false.

This is needed when you want to display the features on a map or a scene. When querying non-spatial data, results do not include geometry.

Implementation

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

Implementation

set returnGeometry(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_QueryParameters_setReturnGeometry(
        _handle, value, errorHandler);
  });
}