Set text alignment in QLineEdit widgets Parameters ---------- flags: Qt.Alignment flags flags that set alignment of text in QLineEdit widgets For example `Qt.AlignCenter`. The default settings for the widget is `Qt.AlignRight | Qt
(self, flags)
| 725 | self.validator_high.setRange(round(self._value_low + self._range_min_diff), round(self._range_high)) |
| 726 | |
| 727 | def setAlignment(self, flags): |
| 728 | """ |
| 729 | Set text alignment in QLineEdit widgets |
| 730 | |
| 731 | Parameters |
| 732 | ---------- |
| 733 | flags: Qt.Alignment flags |
| 734 | flags that set alignment of text in QLineEdit widgets |
| 735 | For example `Qt.AlignCenter`. The default settings |
| 736 | for the widget is `Qt.AlignRight | Qt.AlignVCenter`. |
| 737 | """ |
| 738 | |
| 739 | self.le_min_value.setAlignment(flags) |
| 740 | self.le_max_value.setAlignment(flags) |
| 741 | |
| 742 | def setBackground(self, rgb): |
| 743 | """ |
no outgoing calls
no test coverage detected