Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IEditableObject.cs « System.ComponentModel « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 40e4d105c17246971bb7fb34dbb857d831edba86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// System.ComponentModel.IEditableObject.cs
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
//
// Authors:
//   Rodrigo Moya (rodrigo@ximian.com)
//

namespace System.ComponentModel
{
	public interface IEditableObject
	{
		void BeginEdit();

		void CancelEdit();

		void EndEdit();
	}
}