Svg.SvgExtentions.GetRectangle C# (CSharp) Method

GetRectangle() public static method

public static GetRectangle ( this r ) : RectangleF
r this
return System.Drawing.RectangleF
        public static RectangleF GetRectangle(this SvgRectangle r)
        {
            return new RectangleF(r.X, r.Y, r.Width, r.Height);
        }