width property
The thickness of the line symbol outline in device-independent pixels (DIPs).
The default value is 1.0.
Implementation
double get width {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_LineSymbol_getWidth(_handle, errorHandler);
});
}
Implementation
set width(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_LineSymbol_setWidth(_handle, value, errorHandler);
});
}