isEmpty property

bool isEmpty

True if the geometry is empty, false otherwise.

A geometry is empty if it does not have valid geographic coordinates, even if the SpatialReference is specified. An empty Geometry is a valid object that has no location in space.

Implementation

bool get isEmpty {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Geometry_getIsEmpty(_handle, errorHandler);
  });
}