2007-06-06 Jonathan Pobst <monkey@jpobst.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / MouseEventArgs.cs
index 138d64d988e2dc91fa0fc49b476d658c70ae0a00..6d2c63646eeb5c6f97d1787d116730a0e72d6fb7 100644 (file)
@@ -27,6 +27,7 @@
 // COMPLETE
 
 using System.Runtime.InteropServices;
+using System.Drawing;
 
 namespace System.Windows.Forms {
        [ComVisible(true)]
@@ -77,6 +78,16 @@ namespace System.Windows.Forms {
                                return this.y;
                        }
                }
+#if NET_2_0
+               public
+#else
+               internal
+#endif
+               Point Location {
+                       get {
+                               return new Point (this.x, this.y);
+                       }
+               }
                #endregion      // Public Instance Properties
        }
 }