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