// // System.Windows.Forms.IDataGridEditingService.cs // // Author: // William Lamb (wdlamb@notwires.com) // Dennis Hayes (dennish@raytek.com) // // (C) 2002 Ximian, Inc. http://www.ximian.com // namespace System.Windows.Forms { public interface IDataGridEditingService { // There is no documentation for this interface's members! // Only a note saying that it supports the .NET infrastructure // and is not intended to be used directly from your code. // The following methods had their own listing in the documentation; // I don't know what other methods and properties there may be. bool BeginEdit(DataGridColumnStyle gridColumn, int rowNumber); bool EndEdit(DataGridColumnStyle gridColumn, int rowNumber, bool shouldAbort); } }