Open In App

wxPython – GetFieldsCount() function in wx.StatusBar

Last Updated : 11 Jun, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

In this article we are going to learn about GetFieldsCount() function associated with the wx.StatusBar class of wxPython. GetFieldCount() function is simply used to return the number of fields in the status bar. It returns total fields in int format.

No arguments are required in GetFieldsCount() function.

Syntax: wx.StatusBar.GetFieldsCount(self)

Parameters: No arguments are required in GetFieldsCount() function.

Return Type: int

Code Example:




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([150, 150])
        self.statusbar.SetStatusText("This is first field", 0)
        self.statusbar.SetStatusText("This is second field", 1)
  
        # GET TOTAL FIELDS IN STATUSBAR
        tot = self.statusbar.GetFieldsCount()
        # PRINT TOTAL FIELDS
        print(tot)
  
        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:

2

Output Window:



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads