getBitmapHeight method
Implementation
int getBitmapHeight() {
if (_bitmapPercent > 0 && _bitmapPercent != 100) {
return (_bitmapHeight * _bitmapPercent / 100.0).round();
}
return _bitmapHeight;
}
int getBitmapHeight() {
if (_bitmapPercent > 0 && _bitmapPercent != 100) {
return (_bitmapHeight * _bitmapPercent / 100.0).round();
}
return _bitmapHeight;
}