hou.Pane class
Represents a Houdini UI pane tab.
Subclasses: hou.TakeListPane , hou.ParmSpreadsheetPane , hou.PathBasedPaneTab , hou.TextportPane , hou.ChannelEditorPane , hou.HandleListPane , hou.ChannelListPane , hou.IPRPane
See also: hou.PaneTab
Methods
createTab(self, type)→ hou.PaneTab-
Creates a new pane tab with the desired type. Makes the new pane tab the focused tab. Returns the new pane tab.
currentTab(self)→-
Returns the currently focused pane tab.
desktop(self)→ hou.Desktop-
Returns the desktop on which this pane tab exists.
isMaximized(self)paneLinkNumber(self)→ int or NonesendKey(self, hotkey_name)setIsMaximized(self, on)setPaneLinkNumber(self, number)showPaneBar(self, on)showsPaneBar(self)splitHorizontally(self)→ hou.Pane-
Splits the pane and adds a new pane to the right. The new pane will have a single tab whose type will be equal to the type of the split pane’s focused tab. Returns the new pane.
splitVertically(self)→ hou.Pane-
Splits the pane and adds a new pane to the bottom. The new pane will have a single tab whose type will be equal to the type of the split pane’s focused tab. Returns the new pane.
swapWithPane(self, pane)tabOfType(self, type, index=0)→ hou.PaneTab orNone-
Finds and returns the pane tab with the desired type. Returns
Noneif no such tab exists in the pane.If there are multiple tabs in the pane with the desired type, then the first found tab is returned. Use 'index' to return the other tabs. For example, use 'index=0' to return the first found tab, use 'index=1' to return the second found tab, etc.
tabs(self)→ tuple of hou.PaneTab-
Returns a list of the pane tabs in this pane.