Open In App

wx.ColourDisplay() function in wxPython

Last Updated : 20 Apr, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

In this article we are going to learn about ColourDisplay() method in wxPython. ColourDisplay() function is an inbuilt function present in wxPython. code>ColourDisplay() function is simply used to determine whether the display we are using is colour display or not. ColourDisplay() function returns True if the display is colour, False otherwise.
 

Syntax: 
wx.ColourDisplay()
Parameters: 
ColourDisplay() function requires no arguments.
Return Type: 
bool
 

Code Example: 
 

Python3




# importing the module
import wx
   
# definition of the Example class
class Example(wx.Frame):
   
    # instantiating the class
    def __init__(self, *args, **kwargs):
        super(Example, self).__init__(*args, **kwargs)
  
        self.InitUI()
  
    # method for creation of user interface
    def InitUI(self):
 
        # condition for colour display
        if(wx.ColourDisplay()==True):
 
            # print if display is Colour display
            print("Display is Colour Display")
 
        else:
 
            # print if display is not Colour display
            print("Display is not Colour Display")
                 
# definition of the main function
def main():
   
    # creating an App object
    app = wx.App()
   
    # creating an Example object
    ex = Example(None)
   
    # showing the Example object
    ex.Show()
   
    # running the App object
    app.MainLoop()
    
# driver code
if __name__ == '__main__':
    main()


Output: 
 

Display is Colour Display

 



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads