# 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


class PropertyGridHitTestResult(__sip.wrapper):
    """ PropertyGridHitTestResult() -> None """
    def GetColumn(self): # real signature unknown; restored from __doc__
        """
        GetColumn() -> int
        
        Returns column hit.
        """
        return 0

    def GetProperty(self): # real signature unknown; restored from __doc__
        """
        GetProperty() -> PGProperty
        
        Returns property hit.
        """
        return PGProperty

    def GetSplitter(self): # real signature unknown; restored from __doc__
        """
        GetSplitter() -> int
        
        Returns index of splitter hit, -1 for none.
        """
        return 0

    def GetSplitterHitOffset(self): # real signature unknown; restored from __doc__
        """
        GetSplitterHitOffset() -> int
        
        If splitter hit, then this member function returns offset to the exact
        splitter position.
        """
        return 0

    def __init__(self): # real signature unknown; restored from __doc__
        pass

    Column = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetColumn() -> int

Returns column hit."""

    Property = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetProperty() -> PGProperty

Returns property hit."""

    Splitter = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetSplitter() -> int

Returns index of splitter hit, -1 for none."""

    SplitterHitOffset = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetSplitterHitOffset() -> int

If splitter hit, then this member function returns offset to the exact
splitter position."""

    __weakref__ = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """list of weak references to the object"""



