style property
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,
);
}
Implementation
set style(SimpleFillSymbolStyle value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_SimpleFillSymbol_setStyle(
_handle,
value.coreValue,
errorHandler,
);
});
}