IEditableObject.cs 293 B

1234567891011121314151617181920
  1. //
  2. // System.ComponentModel.IEditableObject.cs
  3. //
  4. // (C) 2002 Ximian, Inc. http://www.ximian.com
  5. //
  6. // Authors:
  7. // Rodrigo Moya ([email protected])
  8. //
  9. namespace System.ComponentModel
  10. {
  11. public interface IEditableObject
  12. {
  13. void BeginEdit();
  14. void CancelEdit();
  15. void EndEdit();
  16. }
  17. }