.. wxPython Phoenix documentation

   This file was generated by Phoenix's sphinx generator and associated
   tools, do not edit by hand.

   Copyright: (c) 2011-2025 by Total Control Software
   License:   wxWindows License

.. include:: headings.inc



.. _wx.grid.GridCellActivatableEditor:

==========================================================================================================================================
|phoenix_title|  **wx.grid.GridCellActivatableEditor**
==========================================================================================================================================

Base class for activatable editors. 
         

Inheriting from this class makes it simpler to implement editors that support only activation, but not in-place editing, as they only need to implement :meth:`~wx.grid.GridCellActivatableEditor.TryActivate`, :meth:`~wx.grid.GridCellActivatableEditor.DoActivate`  and :meth:`~wx.grid.GridCellEditor.Clone`  methods, but not all the other pure virtual methods of :ref:`wx.grid.GridCellEditor`. 


         



.. versionadded:: 4.1/wxWidgets-3.1.4  
     







|

|class_hierarchy| Class Hierarchy
=================================

.. raw:: html

   <div class="collabsible-wrapper">
      <input id="collapsible-inheritance" class="collapsible-checkbox" type="checkbox">
      <label for="collapsible-inheritance" tabindex="0" title="Show inheritance diagram" class="collapsible-label">Inheritance diagram for class <strong>GridCellActivatableEditor</strong>:</label>
      <div class="collapsible-content">
         <p class="graphviz">
            <center><img src="_static/images/inheritance/wx.grid.GridCellActivatableEditor_inheritance.svg" alt="Inheritance diagram of GridCellActivatableEditor" usemap="#dummy" class="inheritance invert-in-dark-mode"/></center>
            <map id="dummy" name="dummy"> <area shape="rect" id="node1" href="wx.grid.GridCellActivatableEditor.html" title="Base class for activatable editors." alt="" coords="107,159,371,188"/> <area shape="rect" id="node2" href="wx.grid.GridCellEditor.html" title="This class is responsible for providing and manipulating the in-place edit controls for the grid." alt="" coords="146,82,331,111"/> <area shape="rect" id="node3" href="wx.SharedClientDataContainer.html" title="This class is a replacement for wx.ClientDataContainer, and unlike wx.ClientDataContainer  the wx.SharedClientDataContainer  client data is copiable, so it can be copied when objects containing it are cloned." alt="" coords="5,5,256,34"/> <area shape="rect" id="node4" href="wx.RefCounter.html" title="This class is used to manage reference-counting providing a simple interface and a counter." alt="" coords="281,5,415,34"/> </map> 
         </p>
      </div>
   </div>
   <script type="text/javascript" src="_static/inheritancetoggle.js"></script>



|


|method_summary| Methods Summary
================================

================================================================================ ================================================================================
:meth:`~wx.grid.GridCellActivatableEditor.DoActivate`                            Same method as in :ref:`wx.grid.GridCellEditor`, but pure virtual.
:meth:`~wx.grid.GridCellActivatableEditor.TryActivate`                           Same method as in :ref:`wx.grid.GridCellEditor`, but pure virtual.
================================================================================ ================================================================================


|


|api| Class API
===============


.. class:: wx.grid.GridCellActivatableEditor(GridCellEditor)

   Base class for activatable editors.



   .. method:: DoActivate(self, row, col, grid)

      Same method as in :ref:`wx.grid.GridCellEditor`, but pure virtual. 
                 


      :param `row`: 
      :type `row`: int
      :param `col`: 
      :type `col`: int
      :param `grid`: 
      :type `grid`: wx.grid.Grid




      :rtype: `None`     








   .. method:: TryActivate(self, row, col, grid, actSource)

      Same method as in :ref:`wx.grid.GridCellEditor`, but pure virtual. 
                 

      Note that the implementation of this method must never return :meth:`wx.grid.GridActivationResult.DoEdit`   for the editors inheriting from this class, as it doesn't support normal editing. 
                 


      :param `row`: 
      :type `row`: int
      :param `col`: 
      :type `col`: int
      :param `grid`: 
      :type `grid`: wx.grid.Grid
      :param `actSource`: 
      :type `actSource`: wx.grid.GridActivationSource




      :rtype: :ref:`wx.grid.GridActivationResult`







