# C1.Win.FlexGrid.C1FlexGridBase.CellButtonClick

## Content

<div class="doc-site-dotnet-api-container">




<h1 id="C1_Win_FlexGrid_C1FlexGridBase_CellButtonClick" data-uid="C1.Win.FlexGrid.C1FlexGridBase.CellButtonClick" class="text-break">CellButtonClick Event
</h1>
<div class="markdown level0 summary"><p>Fires after the user clicks a cell button.</p>
</div>
<div class="markdown level0 conceptual"></div>
<h6><strong>Namespace</strong>: <a class="xref" href="C1.Win.FlexGrid.html">C1.Win.FlexGrid</a></h6>
<h6><strong>Assembly</strong>: C1.Win.FlexGrid.10.dll</h6>
<h5 id="C1_Win_FlexGrid_C1FlexGridBase_CellButtonClick_syntax">Syntax</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public event RowColEventHandler CellButtonClick</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Event CellButtonClick As RowColEventHandler</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="C1.Win.FlexGrid.RowColEventHandler.html">RowColEventHandler</a></td>
      <td>Fires after the user clicks a cell button.</td>
    </tr>
  </tbody>
</table>
<h5 id="C1_Win_FlexGrid_C1FlexGridBase_CellButtonClick_remarks"><strong>Remarks</strong></h5>
<div class="markdown level0 remarks"><p>This event fires when the user clicks an edit button on a cell. Typically, 
this event is used to pop up a custom editor for the cell (for example, dialogs for 
selecting colors, dates, files, pictures, and so on).</p>
<p>By default, cell edit buttons are displayed on the right side of a cell, 
with an ellipsis caption ("..."). They are similar to the buttons displayed in the 
<b>PropertyGrid</b> control, next to <b>Image</b> properties. You may customize 
the button's appearance by assigning a picture to the <a class="xref" href="C1.Win.FlexGrid.C1FlexGridBase.CellButtonImage.html#C1_Win_FlexGrid_C1FlexGridBase_CellButtonImage">CellButtonImage</a> property.</p>
<p>To create an edit button on a cell, you must set the <a class="xref" href="C1.Win.FlexGrid.C1FlexGridBase.AllowEditing.html#C1_Win_FlexGrid_C1FlexGridBase_AllowEditing">AllowEditing</a> 
property to true and set the <a class="xref" href="C1.Win.FlexGrid.C1FlexGridBase.ComboList.html#C1_Win_FlexGrid_C1FlexGridBase_ComboList">ComboList</a> property (on the grid or on specific 
columns) to an ellipsis ("...").</p>
</div>
</div>
