wxPython - GetBorders() function in wx.StatusBar Last Updated : 10 Jun, 2020 Comments Improve Suggest changes Like Article Like Report In this article we are going to learn about GetBorders() function associated with wx.StatusBar class of wxPython. GetBorders() function returns the horizontal and vertical borders used when rendering the field text inside the field area. Note that the rect returned by GetFieldRect already accounts for the presence of horizontal and vertical border returned by this function. Syntax: wx.StatusBar.GetBorders(self) Parameters: No parameters are required by GetBorders() function. Code Example: Python3 1== 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)) # PRINT THE RETURNED wx.Size OBJECT print(self.statusbar.GetBorders()) self.SetTitle('New Frame Title') self.Centre() def main(): app = wx.App() ex = Example(None) ex.Show() app.MainLoop() if __name__ == '__main__': main() Output: Comment More infoAdvertise with us Next Article wxPython - GetBorders() function in wx.StatusBar R RahulSabharwal Follow Improve Article Tags : Python Python-gui Python-wxPython Practice Tags : python Similar Reads 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: ParameterInput TypeDescri 1 min read wxPython - GetFieldsCount() function in wx.StatusBar 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() fun 1 min read wxPython - GetStatusText() function in wx.StatusBar In this article we are going to learn about GetStatusText() function associated with wx.StatusBar class of wxPython. GetStatusText() function is one of the most useful method in wx.StatusBar as this function returns the string associated with a status bar field. It only takes single argument the num 1 min read wxPython - GetStatusWidth() function in wx.StatusBar In this article we are going to learn about GetStatusWidth() function associated with the wx.StatusBar class of wxPython. GetStatusWidth() function is simply used to return the width of the n-th field. It only takes index(position) of field as argument. Syntax: wx.StatusBar.GetStatusWidth(self, n) P 1 min read wxPython - GetMenus() function in wx.MenuBar In this article we are going to learn about GetMenus() function associated with wx.MenuBar class of wxPython. GetMenus() function simply returns a list of (menu, label) items for the menus in the MenuBar. No arguments are required in GetMenus() function. Syntax: wx.MenuBar.GetMenus(self) Parameters: 1 min read Like