2004-05-25 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / IDataGridEditingService.cs
1 //
2 // System.Windows.Forms.IDataGridEditingService.cs
3 //
4 // Author:
5 // William Lamb (wdlamb@notwires.com)
6 // Dennis Hayes (dennish@raytek.com)
7 //
8 // (C) 2002 Ximian, Inc. http://www.ximian.com
9 //
10
11 namespace System.Windows.Forms {
12
13         public interface IDataGridEditingService {
14
15                 // There is no documentation for this interface's members!
16                 // Only a note saying that it supports the .NET infrastructure
17                 // and is not intended to be used directly from your code.
18                 // The following methods had their own listing in the documentation;
19                 // I don't know what other methods and properties there may be.
20
21                 bool BeginEdit(DataGridColumnStyle gridColumn, int rowNumber);
22                 bool EndEdit(DataGridColumnStyle gridColumn, int rowNumber, bool shouldAbort);
23         }
24 }