size property
The size of each grid square in device-independent pixels (DIP).
The default value is 20 x 20 pixels.
Implementation
double get size {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_BackgroundGrid_getGridSize(
_handle,
errorHandler,
);
});
}
Implementation
set size(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_BackgroundGrid_setGridSize(
_handle,
value,
errorHandler,
);
});
}