drawingTool property

DrawingTool drawingTool

The type of drawing tool that could be used to draw this feature in an editing application.

Implementation

DrawingTool get drawingTool {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_FeatureTemplate_getDrawingTool(
      _handle,
      errorHandler,
    );
  });
  return DrawingTool._fromCoreValue(
    coreValue,
  );
}