PyQt5 QCalendarWidget - Removing the Mask Last Updated : 17 Jun, 2020 Comments Improve Suggest changes Like Article Like Report In this article we will see how we can remove i.e clear the mask of the QCalendarWidget. Mask are basically used to hide the calendar, with the help of mask user will not be able to see the whole calendar although the calendar will still exist but there will be mask on it.We can set mask to the calendar with the help of setMask method. In order to do this we will use clearMask method with the QCalendarWidget object. Syntax : calendar.clearMask() Argument : It takes no argument Return : It return None Below is the implementation Python3 1== # importing libraries from PyQt5.QtWidgets import * from PyQt5 import QtCore, QtGui from PyQt5.QtGui import * from PyQt5.QtCore import * import sys # QCalendarWidget Class class Calendar(QCalendarWidget): # constructor def __init__(self, parent = None): super(Calendar, self).__init__(parent) self.setMouseTracking(True) class Window(QMainWindow): def __init__(self): super().__init__() # setting title self.setWindowTitle("Python ") # setting geometry self.setGeometry(100, 100, 500, 400) # calling method self.UiComponents() # showing all the widgets self.show() # method for components def UiComponents(self): # creating a QCalendarWidget object # as Calendar class inherits QCalendarWidget self.calendar = Calendar(self) # setting cursor self.calendar.setCursor(Qt.PointingHandCursor) # setting geometry to the calendar self.calendar.setGeometry(20, 20, 300, 240) # QRect object rect = QRect(10, 10, 200, 100) # creating a QRegion region = QRegion(rect) # setting mask to the calendar self.calendar.setMask(region) # clearing the mask self.calendar.clearMask() # create pyqt5 app App = QApplication(sys.argv) # create the instance of our Window window = Window() # start the app sys.exit(App.exec()) Output : Comment More infoAdvertise with us Next Article PyQt5 QCalendarWidget - Setting Mask R rakshitarora Follow Improve Article Tags : Python Python-PyQt Python-gui Python PyQt-QCalendarWidget Practice Tags : python Similar Reads PyQt5 QCalendarWidget - Setting Mask In this article we will see how we can set the mask to the QCalendarWidget. Mask are basically used to hide the calendar, with the help of mask user will not be able to see the whole calendar although the calendar will still exist but there will be mask on it. It causes only the pixels of the calend 2 min read PyQt5 QCalendarWidget - Removing the horizontal header In this article, we will see how we can remove the horizontal header format of the QCalendarWidget. Horizontal header is the place in QCalendarWidget which shows the days name by default short form of days are show, for example, Monday is displayed as Mon, below is the horizontal header representati 1 min read PyQt5 QCalendarWidget - Removing QAction In this article we will see how we can remove the QAction of the QCalendarWidget. In order to do this we use removeAction method, this methods removes the action from this calendar's list of actions. We can get all the actions with the help of actions method. In order to do this we will use removeA 2 min read PyQt5 QCalendarWidget - Showing it In this article we will see how we can show the QCalendarWidget to the screen irrespective its current state is hidden. Showing the QCalendarWidget changes the visible property and set it to true. In order to do this we will use show method with the QCalendarWidget object.Syntax : calendar.show()Arg 2 min read PyQt5 QCalendarWidget - Setting Window Flags In this article we will see how we can set the window flags of the QCalendarWidget. Window flags are a combination of a type (e.g. Qt::Dialog) and zero or more hints to the window system (e.g. Qt::FramelessWindowHint).If the calendar had type Qt::Widget or Qt::SubWindow and becomes a window (Qt::Win 2 min read PyQt5 QCalendarWidget - Setting Grid In this article, we will see how we can set a grid in the QCalendarWidget. Grid is basically the interconnected network of lines that separates the dates from each other. By default, there is no grid to the QCalendarWidget although we can set the grid any time. Below is how a calendar with a grid lo 1 min read Like