(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Windows.Forms / Gtk / DragDropEffects.cs
blobdd3e0b6c537be776ad881537cc3c37de86b8b7ce
1 //
2 // System.Windows.Forms.DragDropEffects.cs
3 //
4 // Author:
5 // Jaak Simm (jaaksimm@firm.ee)
6 // Dennis Hayes (dennish@raytek.com)
7 // (C) 2002 Ximian, Inc. http://www.ximian.com
8 //
10 using System;
12 namespace System.Windows.Forms {
15 /// <summary>
16 /// Specifies the effects of a drag-and-drop operation.
17 /// This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
18 /// </summary>
19 [Flags]
20 public enum DragDropEffects {
22 None = 0,
23 Copy = 1,
24 Move = 2,
25 Link = 4,
26 Scroll = -2147483648,
27 All = -2147483645,