wxPython - FindString() function in wx.RadioBox Last Updated : 01 Mar, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report 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 boolean bCase True for Case-sensitive False otherwise. Syntax: wx.RadioBox.FindString(self, string, bCase=False) Parameters: ParameterInput TypeDescriptionstringstringThe string to find.bCaseboolShould the search be case-sensitive? Returns: Returns the index of matching button starting from zero. 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 lblList = ['Radio One', 'Radio Two'] # create radio box containing above list self.rbox = wx.RadioBox(pnl, label ='RadioBox', pos =(80, 10), choices = lblList, majorDimension = 1, style = wx.RA_SPECIFY_COLS) # print the position of matching string button print (self.rbox.FindString('radio two')) # 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: 1 Output Window: Comment More infoAdvertise with us Next Article wxPython - GetRowCount() function in wx.RadioBox R RahulSabharwal Follow Improve Article Tags : Python Python-gui Python-wxPython Python wxPython-Button Practice Tags : python Similar Reads wxPython - EnableItem() function in wx.RadioBox 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, 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 wxPython - GetColumnCount() function in wx.RadioBox In this article we are going to learn about GetColumnCount() function associated with wx.RadioBox class of wxPython. GetColumnCount() function is used to simply return the number of columns in the radiobox. No parameters are required by GetColumnCount() function. Syntax: wx.RadioBox.GetColumnCount(s 1 min read 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 - GetRowCount() function in wx.RadioBox In this article we are going to learn about GetRowCount() method associated with wx.RadioBox class of wxPython. GetRowCount() method is a simple method and used in order to return the number of item rows in the radiobox. No parameters are required by GetRowCount() function. Syntax: wx.RadioBox.GetRo 1 min read wxPython - GetString() method in wx.RadioBox In this article we are going to learn about GetString() method associated with wx.RadioBox class of wxPython. GetString() method is simply used in order to return the label of the item with the given index. It takes the index of the corresponding item as parameter. Syntax: wx.RadioBOx.GetString(self 2 min read Like