SuperMap.WinRT.Core.Rectangle2D.CreateFromXYWidthHeight C# (CSharp) Method

CreateFromXYWidthHeight() public static method

${core_Rectangle2D_method_CreateFromXYWidthHeight_D}
public static CreateFromXYWidthHeight ( double x, double y, double width, double height ) : Rectangle2D
x double ${core_Rectangle2D_method_CreateFromXYWidthHeight_param_x}
y double ${core_Rectangle2D_method_CreateFromXYWidthHeight_param_y}
width double ${core_Rectangle2D_method_CreateFromXYWidthHeight_param_width}
height double ${core_Rectangle2D_method_CreateFromXYWidthHeight_param_height}
return Rectangle2D
        public static Rectangle2D CreateFromXYWidthHeight(double x, double y, double width, double height)
        {
            return new Rectangle2D(x, y, x + width, y + height);
        }