Friday, September 26, 2025
HomeLanguageswxPython – GetFieldRect() function in wx.StatusBar

wxPython – GetFieldRect() function in wx.StatusBar

In this article we are going to learn about GetFieldRect() function associated with the wx.StatusBar class of wxPython. GetField() function simply returns Returns the size and position of a field’s internal bounding rectangle.

Syntax: wx.StatusBar.GetFieldRect() Parameters:

Parameter Input Type Description
frame wx.Frame Frame to attach menubar to

Return Type: wx.Rect

Code Example: 

Python3




import wx
 
 
class Example(wx.Frame):
 
    def __init__(self, *args, **kwargs):
        super(Example, self).__init__(*args, **kwargs)
 
        self.InitUI()
 
    def InitUI(self):
 
        self.locale = wx.Locale(wx.LANGUAGE_ENGLISH)
        self.statusbar = wx.StatusBar()
        self.statusbar.Create(self, id = 1, style = wx.STB_DEFAULT_STYLE,
                                                     name = "Status Bar")
 
        self.SetStatusBar(self.statusbar)
        self.SetSize((350, 250))
        self.statusbar.SetFieldsCount(2)
        self.statusbar.SetStatusWidths([200, 1])
        self.statusbar.SetStatusText("Hi I am Status Bar")
 
        # GET wx.Rect OBJECT
        field = self.statusbar.GetFieldRect(1)
  
        # PRINT field
        print(field)
 
        self.SetTitle('New Frame Title')
        self.Centre()
 
def main():
    app = wx.App()
    ex = Example(None)
    ex.Show()
    app.MainLoop()
 
 
if __name__ == '__main__':
    main()


Console Output:

(210, 2, 30, 20)

Output Window:

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32320 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6683 POSTS0 COMMENTS
Nicole Veronica
11854 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11910 POSTS0 COMMENTS
Shaida Kate Naidoo
6795 POSTS0 COMMENTS
Ted Musemwa
7071 POSTS0 COMMENTS
Thapelo Manthata
6756 POSTS0 COMMENTS
Umr Jansen
6762 POSTS0 COMMENTS