# 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


from .RichTextStyleDefinition import RichTextStyleDefinition

class RichTextParagraphStyleDefinition(RichTextStyleDefinition):
    """
    RichTextParagraphStyleDefinition(name='') -> None
    
    This class represents a paragraph style definition, usually added to a
    wxRichTextStyleSheet.
    """
    def GetNextStyle(self): # real signature unknown; restored from __doc__
        """
        GetNextStyle() -> str
        
        Returns the style that should normally follow this style.
        """
        return ""

    def SetNextStyle(self, name): # real signature unknown; restored from __doc__
        """
        SetNextStyle(name) -> None
        
        Sets the style that should normally follow this style.
        """
        pass

    def __init__(self, name=''): # real signature unknown; restored from __doc__
        pass

    NextStyle = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetNextStyle() -> str

Returns the style that should normally follow this style."""



