style property

SimpleFillSymbolStyle style

The style of the simple fill symbol.

SimpleFillSymbolStyle.solid if an error occurs.

Implementation

SimpleFillSymbolStyle get style {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_SimpleFillSymbol_getStyle(
      _handle,
      errorHandler,
    );
  });
  return SimpleFillSymbolStyle._fromCoreValue(
    coreValue,
  );
}
void style=(SimpleFillSymbolStyle value)

Implementation

set style(SimpleFillSymbolStyle value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_SimpleFillSymbol_setStyle(
      _handle,
      value.coreValue,
      errorHandler,
    );
  });
}