getBitmapWidth method

int getBitmapWidth()
inherited

Implementation

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