Open In App

PyQt5 – isTextVisible() method for Progress Bar

Last Updated : 22 Apr, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

When we create a progress bar, by default percentage is visible. Although we can change the visibility status of text by using setTextVisible method. isTextVisible method is used to check if the text visibility status in progress bar.

Syntax : bar.isTextVisible()

Argument : It takes no argument.

Return : It return bool, True if text is visible and False if text is invisible.

Below is the implementation.




# importing libraries
from PyQt5.QtWidgets import * 
from PyQt5 import QtCore, QtGui
from PyQt5.QtGui import * 
from PyQt5.QtCore import * 
import sys
  
  
class Window(QMainWindow):
  
    def __init__(self):
        super().__init__()
  
        # setting title
        self.setWindowTitle("Python ")
  
        # setting geometry
        self.setGeometry(100, 100, 600, 400)
  
        # calling method
        self.UiComponents()
  
        # showing all the widgets
        self.show()
  
    # method for widgets
    def UiComponents(self):
        # creating progress bar
        bar = QProgressBar(self)
  
        # setting geometry to progress bar
        bar.setGeometry(150, 150, 200, 30)
  
        # set value to progress bar
        bar.setValue(40)
  
        # setting alignment to center
        bar.setAlignment(Qt.AlignCenter)
  
        # setting text visibility to false
        bar.setTextVisible(False)
  
        # getting the visibility status
        visible = bar.isTextVisible()
  
        # creating label to print visibility status
        label = QLabel("Text visibility status = " + str(visible), self)
  
        # adjusting the size of label
        label.adjustSize()
  
        # moving the label
        label.move(160, 200)
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
# start the app
sys.exit(App.exec())


Output :



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads