graphicsOverlay property

GraphicsOverlay? graphicsOverlay

The graphics overlay the graphic is contained in. If the graphic is not contained in an overlay then null is returned.

Implementation

GraphicsOverlay? get graphicsOverlay {
  final objectHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Graphic_getGraphicsOverlay(_handle, errorHandler);
  });
  return GraphicsOverlay._fromHandle(objectHandle);
}