using System; using System.Text; namespace DevComponents.AdvTree { /// /// Provides data for the ProvideCustomCellEditor event. /// public class CustomCellEditorEventArgs : EventArgs { /// /// Gets or sets the cell editor. You must set this property in your event handler to the custom /// editor to be used for cell editing. /// public ICellEditControl EditControl = null; /// /// Gets the cell editor will be used for. /// public readonly Cell Cell; /// /// Initializes a new instance of the CustomCellEditorEventArgs class. /// /// public CustomCellEditorEventArgs(Cell cell) { Cell = cell; } } /// /// Defines delegate for ProvideCustomCellEditor event. /// public delegate void CustomCellEditorEventHandler(object sender, CustomCellEditorEventArgs e); }