wxPython - EnableItem() function in wx.RadioBox Last Updated : 29 Jun, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report In this article we are going to learn about EnableItem() function associated with wx.RadioBox class of wxPython. EnableItem() function is simply used to enable or disable an individual button in the radio box. It takes the position of button to disable or enable and boolean 'enable' True to enable, False to disable. Syntax: wx.RadioBox.EnableItem(self, n, enable=True) Parameters: Parameter Input Type Description n int The zero-based button to enable or disable. enable bool True to enable, False to disable. Return type: bool Code Example: Python3 1== 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 lblList = ['Radio One', 'Radio Two'] # create radio boc containing above list self.rbox = wx.RadioBox(pnl, label ='RadioBox', pos =(80, 10), choices = lblList, majorDimension = 1, style = wx.RA_SPECIFY_COLS) # disable the second button in radio box self.rbox.EnableItem(1, False) # 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() Code Output: Comment More infoAdvertise with us Next Article wxPython - EnableItem() function in wx.RadioBox R RahulSabharwal Follow Improve Article Tags : Python Python-gui Python-wxPython Python wxPython-Button Practice Tags : python Similar Reads wxPython - Enable() function in wx.RadioButton In this article we will learn about Enable() function associated with wx.RadioButton class of wxPython. Enable() function is simply used to enable or disable the Radio Button for user input. It takes a boolean argument True to Enable and False to disable. Syntax: wx.RadioButton.Enable(self, enable=T 1 min read wxPython - FindString() function in wx.RadioBox In this article we are going to learn about FindString() function associated with wx.RadioBox class of wxPython. FindString() function is simply used to find a button matching the given string, returning the position if found, or NOT_FOUND if not found. It takes a string argument to match string and 2 min read wxPython - EnableTool() function in wx.Toolbar In this article we are going to learn EnableTool() function of class wx.ToolBar of wxPython. EnableTool is used to enable or disable(make clickable and unclickable) the tool present in toolbar. Syntax : wx.ToolBar.EnableTool(self, toolid, enable) Parameters : ParameterInput TypeDescriptiontoolidintI 1 min read wxPython - Enable() function in wx.MenuItem In this article we are going to learn about Enable() function associated with the wx.MenuItem class of wxPython. As the name Enable suggests Enable() function enables or disables the menu item. It only takes a boolean parameter enable, True for Enable and False for Disable. Syntax: wx.MenuItem.Enabl 1 min read wxPython - GetCount() function in wx.RadioBox In this article we are going to learn about GetCount() function associated with wx.RadioBox class of wxPython. GetCount() function is used to simply return the number of items in the control. No parameters are required by GetCount() function. Syntax: wx.RadioBox.GetCount(self) Parameters: No paramet 1 min read Like