| 1234567891011121314151617181920 |
- //
- // System.ComponentModel.IEditableObject.cs
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- // Authors:
- // Rodrigo Moya ([email protected])
- //
- namespace System.ComponentModel
- {
- public interface IEditableObject
- {
- void BeginEdit();
- void CancelEdit();
- void EndEdit();
- }
- }
|