========================= RibbonPageGroup (hwx.gui) ========================= Logical grouping of SpriteActionGroups in a RibbonPage. ---------- Properties ---------- +----------+ | visible_ | +----------+ -------------- Public Methods -------------- +---------------------------------+ | classmethod get_ (cls, name) | +---------------------------------+ | add_ (self, action, after=None) | +---------------------------------+ | hide_ (self) | +---------------------------------+ | isShown_ (self) | +---------------------------------+ | show_ (self) | +---------------------------------+ ---------------- Property Details ---------------- .. _visible: .. method:: visible The visibility of the RibbonPageGroup. -------------- Method Details -------------- .. _get: .. classmethod:: get(cls, name) Gets the RibbonPageGroup with the specified name. :param name: The RibbonPageGroup name to get. :type name: str :returns: The page group. :rtype: RibbonPageGroup .. _add: .. method:: add(self, action, after=None) Adds the SpriteAction/SpriteActionGroup. :param action: The action to be added :type action: Union[str, SpriteAction, SpriteActionGroup] :param after: Determines whether to insert the specified item after the group or not. :type after: Union[str, SpriteAction, SpriteActionGroup] .. _hide: .. method:: hide(self) Hides the RibbonPageGroup. .. _isShown: .. method:: isShown(self) Returns True if it shown, False otherwise. .. _show: .. method:: show(self) Shows the RibbonPageGroup.