Merge pull request #961 from ermshiperete/bug-xamarin-18118
[mono.git] / mcs / class / System.Windows.Forms.DataVisualization / System.Windows.Forms.DataVisualization.Charting / AnnotationPositionChangingEventArgs.cs
1 // Authors:
2 // Francis Fisher (frankie@terrorise.me.uk)
3 //
4 // (C) Francis Fisher 2013
5 //
6 // Permission is hereby granted, free of charge, to any person obtaining
7 // a copy of this software and associated documentation files (the
8 // "Software"), to deal in the Software without restriction, including
9 // without limitation the rights to use, copy, modify, merge, publish,
10 // distribute, sublicense, and/or sell copies of the Software, and to
11 // permit persons to whom the Software is furnished to do so, subject to
12 // the following conditions:
13 // 
14 // The above copyright notice and this permission notice shall be
15 // included in all copies or substantial portions of the Software.
16 // 
17 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24
25 using System;
26 using System.Drawing;
27
28 namespace System.Windows.Forms.DataVisualization.Charting
29 {
30         public class AnnotationPositionChangingEventArgs : EventArgs
31         {
32                 public AnnotationPositionChangingEventArgs ()
33                 {
34                 }
35
36                 public Annotation Annotation { get; set; }
37
38                 public PointF NewAnchorLocation { get; set; }
39                 public double NewAnchorLocationX { 
40                         get { return this.NewAnchorLocation.X; } 
41                         set { 
42                                 PointF nal = this.NewAnchorLocation; 
43                                 nal.X = (float)value;
44                                 this.NewAnchorLocation = nal; 
45                         } 
46                 }
47                 public double NewAnchorLocationY { 
48                         get { return this.NewAnchorLocation.Y; } 
49                         set { 
50                                 PointF nal = this.NewAnchorLocation; 
51                                 nal.Y = (float)value;
52                                 this.NewAnchorLocation = nal; 
53                         } 
54                 }
55
56                 public RectangleF NewPosition { get; set; }
57
58                 public double NewLocationX { 
59                         get { return this.NewPosition.X; } 
60                         set { 
61                                 RectangleF np = this.NewPosition; 
62                                 np.X = (float)value;
63                                 this.NewPosition = np;
64                         }
65                 }
66                 public double NewLocationY { 
67                         get { return this.NewPosition.Y; } 
68                         set { 
69                                 RectangleF np = this.NewPosition; 
70                                 np.Y = (float)value; 
71                                 this.NewPosition = np;
72                         } 
73                 }
74                 public double NewSizeWidth { 
75                         get { return this.NewPosition.Width; } 
76                         set { 
77                                 RectangleF np = this.NewPosition; 
78                                 np.Width = (float)value; 
79                                 this.NewPosition = np;
80                         }
81                 }
82                 public double NewSizeHeight { 
83                         get { return this.NewPosition.Height; } 
84                         set { 
85                                 RectangleF np = this.NewPosition; 
86                                 np.Height = (float)value; 
87                                 this.NewPosition = np;
88                         }
89                 }
90         }
91 }