# encoding: utf-8
# module wx._dataview
# from D:\project\A_Board\.venv\Lib\site-packages\wx\_dataview.cp313-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import sip as __sip
import wx._core as __wx__core


from .DataViewIconText import DataViewIconText

class DataViewCheckIconText(DataViewIconText):
    """
    DataViewCheckIconText(text='', icon=wx.BitmapBundle(), checkedState=wx.CHK_UNDETERMINED) -> None
    DataViewCheckIconText(other) -> None
    
    wxDataViewCheckIconText is used by wxDataViewCheckIconTextRenderer for
    data transfer.
    """
    def GetCheckedState(self): # real signature unknown; restored from __doc__
        """
        GetCheckedState() -> wx.CheckBoxState
        
        Gets the checked state.
        """
        pass

    def SetCheckedState(self, state): # real signature unknown; restored from __doc__
        """
        SetCheckedState(state) -> None
        
        Sets the checked state.
        """
        pass

    def __init__(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
        pass

    CheckedState = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetCheckedState() -> wx.CheckBoxState

Gets the checked state."""



