# encoding: utf-8
# module wx._propgrid
# from D:\project\A_Board\.venv\Lib\site-packages\wx\_propgrid.cp313-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import sip as __sip
import wx._core as __wx__core


from .PGCell import PGCell

class PGChoiceEntry(PGCell):
    """
    PGChoiceEntry() -> None
    PGChoiceEntry(other) -> None
    PGChoiceEntry(label, value=PG_INVALID_VALUE) -> None
    
    Data of a single wxPGChoices choice.
    """
    def GetValue(self): # real signature unknown; restored from __doc__
        """ GetValue() -> int """
        return 0

    def SetValue(self, value): # real signature unknown; restored from __doc__
        """ SetValue(value) -> None """
        pass

    def __init__(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
        pass

    Value = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetValue() -> int"""



