//The MIT License(MIT) //Copyright(c) 2016 Alberto Rodriguez & LiveCharts Contributors //Permission is hereby granted, free of charge, to any person obtaining a copy //of this software and associated documentation files (the "Software"), to deal //in the Software without restriction, including without limitation the rights //to use, copy, modify, merge, publish, distribute, sublicense, and/or sell //copies of the Software, and to permit persons to whom the Software is //furnished to do so, subject to the following conditions: //The above copyright notice and this permission notice shall be included in all //copies or substantial portions of the Software. //THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR //IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, //FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE //AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER //LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, //OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE //SOFTWARE. using System; namespace LiveCharts.Dtos { /// /// /// public class CoreRectangle { private double _left; private double _top; private double _width; private double _height; /// /// Initializes a new instance of the class. /// public CoreRectangle() { } /// /// Initializes a new instance of the class. /// /// The left. /// The top. /// The width. /// The height. public CoreRectangle(double left, double top, double width, double height) : this() { Left = left; Top = top; Width = width; Height = height; } /// /// Occurs when [set top]. /// public event Action SetTop; /// /// Occurs when [set left]. /// public event Action SetLeft; /// /// Occurs when [set width]. /// public event Action SetWidth; /// /// Occurs when [set height]. /// public event Action SetHeight; /// /// Gets or sets the left. /// /// /// The left. /// public double Left { get { return _left; } set { _left = value; if (SetLeft != null) SetLeft.Invoke(value); } } /// /// Gets or sets the top. /// /// /// The top. /// public double Top { get { return _top; } set { _top = value; if (SetTop != null) SetTop.Invoke(value); } } /// /// Gets or sets the width. /// /// /// The width. /// public double Width { get { return _width; } set { _width = value < 0 ? 0 : value; if (SetWidth != null) SetWidth.Invoke(value); } } /// /// Gets or sets the height. /// /// /// The height. /// public double Height { get { return _height; } set { _height = value < 0 ? 0 : value; if (SetHeight != null) SetHeight.Invoke(value); } } } }