Added missing progressbar orientation documentation

This commit is contained in:
Paweł Borecki 2019-08-22 04:21:50 +02:00
parent 6d64f7ae15
commit 8f07453f38

View File

@ -50,6 +50,12 @@ Sets the min value of the progressBar. It calls the native method [QProgressBar:
- `min` number - Set the value as min value of the progress bar.
#### `progressBar.setOrientation(orientation)`
Sets the orientation of the progressBar. It calls the native method [QProgressBar: setOrientation](https://doc.qt.io/qt-5/qprogressbar.html#orientation-prop).
- `orientation` Orientation - Specifies visual orientation of the progress bar. [Orientation is an enum from Qt](api/QtEnums.md)
#### `progressBar.value()`
Returns the current value (Number) of the progressBar. It calls the native method [QProgressBar: value](https://doc.qt.io/qt-5/qprogressbar.html#value-prop).