$99 VS $1000+. UI Control for ASP.NET AJAX(contains chart and gridview).
DataGridView WinForms Control
Create custom data grid cells to GirdView in C# for your .NET Windows Forms applications
Home > WinForms UI Controls > User Manual > Grid Editors Properties in C#

DataGridView Editors C# API

To edit the cells in grid, we can switch the Kettic Data Grid Control from read only mode to edit mode. The Kettic Data Grid Control allows data entry, data editing, and data validation by using the data editors included in the Data Grid class. The data editor is able to edit data in each specific column type. There are various types of editors, including, KetticTextBoxEditor, KetticMaskedEditBoxEditor, KetticGridSpinEditor, KetticCheckBoxEditor, KetticDateTimeEditor, KetticComboBoxEditor, and KetticMultipleColumnBomboBoxElement.

C# Methods for Editing GridView

The editors contained in DataGridView inherit from the BaseGridEditor C# class, which does not inherit from the KetticElement. So we need to apply the EditorElement property when we want to customize element properties. While we are processing the editing of the DataGridView, the C# methods below will help us to control the editing to GridView.
  • StartEdit, this method is able to change the current cell to edit mode
  • CloseEditor, this method is used to end the edit operation on the current cell without committing changes in the underlying data source to GridView control
  • IsInEditMode, this property is used to indicate whether the grid is in editing mode
  • EndEdit, this method is used to end the editing operation on the current cell and commits changes in the underlying data source to GridView control
  • ActiveEditor, this property is used to refer to the current active editor to GridView
  • CancelEdit, this method is able to close the current active GridView editor and discard all changes
UI Controlsfor Windows Forms
.NET WinForms UI Overview.NET WinForms UI Features.NET WinForms UI GuideC# WinForms UI DesignVB.NET WinForms UI Design
WinForms UI Controls