haloWidth property
The size of the halo around the text symbol in device-independent pixels (DIPs).
The default value is 0.0.
Implementation
double get haloWidth {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_TextSymbol_getHaloWidth(_handle, errorHandler);
});
}
Implementation
set haloWidth(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_TextSymbol_setHaloWidth(_handle, value, errorHandler);
});
}