Open In App

wxPython – GetDefaultSize() method in wx.StaticLine

Last Updated : 09 Mar, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

In this article we are going to learn about method GetDefaultSize() associated with wx.StaticLine class of wxPython. GetDefaultSize() method is simply used to return the size which will be given to the smaller dimension of the static line, i.e. Its height for a horizontal line or its width for a vertical one.

Syntax: wx.StaticLine.GetDefaultSize() Parameters: No parameters are required in GetDefaultSize() method. Return Type: int

Code Example: 

Python3




import wx
 
 
class FrameUI(wx.Frame):
 
    def __init__(self, parent, title):
        super(FrameUI, self).__init__(parent, title = title, size =(300, 200))
 
        # function for in-frame components
        self.InitUI()
 
    def InitUI(self):
        # parent panel for radio box
        pnl = wx.Panel(self)
 
        # list of choices
        hlist = ['Item One', 'Item Two']
        vlist =['Item One', 'Item Two']
 
        # create vertical line from point (50, 0) to (50, 250)
        self.sl = wx.StaticLine(pnl, 2,  pos =(50, 0), size = (1, 250), 
                                              style = wx.LI_VERTICAL)
 
        # print size of the smaller dimension of static line
        print (self.sl.GetDefaultSize())
 
        # set frame in centre
        self.Centre()
        # set size of frame
        self.SetSize((400, 250))
        # show output frame
        self.Show(True)
 
 
 
# wx App instance
ex = wx.App()
# Example instance
FrameUI(None, 'RadioButton and RadioBox')
ex.MainLoop()


Console Output:

2

Output Window:



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

Similar Reads