height property
The height of the picture marker 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 PictureMarkerSymbol.height or PictureMarkerSymbol.width to 0.0, then the picture fill symbol will adopt the height and width of the loaded PictureMarkerSymbol.image.
Implementation
double get height {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_PictureMarkerSymbol_getHeight(
_handle, errorHandler);
});
}
Implementation
set height(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_PictureMarkerSymbol_setHeight(
_handle, value, errorHandler);
});
}