# encoding: utf-8
# module wx._grid
# from D:\project\A_Board\.venv\Lib\site-packages\wx\_grid.cp313-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import sip as __sip
import wx._core as __wx__core


class GridActivationResult(__sip.wrapper):
    """ Represents the result of wxGridCellEditor::TryActivate(). """
    def DoChange(self, newval): # real signature unknown; restored from __doc__
        """
        DoChange(newval) -> GridActivationResult
        
        Indicate that activating the cell is possible and would change its
        value to the given one.
        """
        return GridActivationResult

    def DoEdit(self): # real signature unknown; restored from __doc__
        """
        DoEdit() -> GridActivationResult
        
        Indicate that the editor control should be shown and the cell should
        be edited normally.
        """
        return GridActivationResult

    def DoNothing(self): # real signature unknown; restored from __doc__
        """
        DoNothing() -> GridActivationResult
        
        Indicate that nothing should be done and the cell shouldn't be edited
        at all.
        """
        return GridActivationResult

    def __init__(self, *args, **kwargs): # real signature unknown
        pass

    __weakref__ = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """list of weak references to the object"""



