# encoding: utf-8
# module wx._richtext
# from D:\project\A_Board\.venv\Lib\site-packages\wx\_richtext.cp313-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import sip as __sip
import wx._adv as __wx__adv
import wx._core as __wx__core
import wx._html as __wx__html


class RichTextCommand(__wx__core.Command):
    """
    RichTextCommand(name, id, buffer, container, ctrl, ignoreFirstTime=False) -> None
    RichTextCommand(name) -> None
    
    Implements a command on the undo/redo stack.
    """
    def AddAction(self, action): # real signature unknown; restored from __doc__
        """
        AddAction(action) -> None
        
        Adds an action to the action list.
        """
        pass

    def ClearActions(self): # real signature unknown; restored from __doc__
        """
        ClearActions() -> None
        
        Clears the action list.
        """
        pass

    def Do(self): # real signature unknown; restored from __doc__
        """
        Do() -> bool
        
        Performs the command.
        """
        return False

    def GetActions(self): # real signature unknown; restored from __doc__
        """
        GetActions() -> RichTextActionList
        
        Returns the action list.
        """
        return RichTextActionList

    def Undo(self): # real signature unknown; restored from __doc__
        """
        Undo() -> bool
        
        Undoes the command.
        """
        return False

    def __init__(self, name, id=None, buffer=None, container=None, ctrl=None, ignoreFirstTime=False): # real signature unknown; restored from __doc__ with multiple overloads
        pass

    Actions = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetActions() -> RichTextActionList

Returns the action list."""



