Gets or sets the editing control for the column.
This property is only relevant if the CellEdit property is set to Custom and is used for customization of editing of the cells.
After setting CellEdit property to Custom a Control class derived object has to be assigned to this property. Whenever a cell in this column is clicked a BeforeCustomEdit event is raised and it is passed the CustomEditEventArgs where a reference to the clicked cell and a reference to this custom control is passed. You should handle this event to process this custom control (e.g. format it with data from the cell). After the event handler finishes, the custom control will be displayed to the user over the clicked cell.
As soon as SmartGrid is clicked, an AfterCustomEdit event is raised which is passed again the same CustomEditEventArgs. You should handle this event to process the information from the custom control and presumably reflect the changes back to the cell.
IMPORTANT:
You must add this column to SmartGrid's Columns collection before setting this property, otherwise a NullReferenceException will be thrown.
Column Class | Resco.Controls.SmartGrid Namespace