height property
The height of the picture fill symbol in device-independent pixels (DIPs).
The height of the symbol spanning from the bottom to the top of the image. The default value is 0.0. You can use this property to override the height of the symbol. Note that if you set the PictureFillSymbol.height or PictureFillSymbol.width to 0.0, then the picture fill symbol will adopt the height and width of the loaded PictureFillSymbol.image.
Implementation
double get height {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_PictureFillSymbol_getHeight(_handle, errorHandler);
});
}
Implementation
set height(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_PictureFillSymbol_setHeight(_handle, value, errorHandler);
});
}