VOOZH about

URL: https://www.geeksforgeeks.org/python/wxpython-getbackgroundcolour-function-in-wx-statictext/

⇱ wxPython - GetBackgroundColour() function in wx.StaticText - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

wxPython - GetBackgroundColour() function in wx.StaticText

Last Updated : 2 Sep, 2022

In this article, we are going to learn about GetBackgroundColor() function associated with wx.StaticText class of wxPython. GetBackgroundColor() function returns the colour that is used for background of statictext. Colour is in the format of (R, G, B, A). No parameters are required in GetBackgroundColor() function.

Syntax: wx.StaticText.GetBackgroundColor(self) Parameters: No parameters are required in GetBackgroundColor() function. Return Type: wx.Colour

Code Example: 

Console Output: (10, 20, 255, 255) Output Window: 👁 Image

Comment