|
|
|
@ -146,17 +146,17 @@ namespace ICSharpCode.Reporting.Addin.DesignableItems
@@ -146,17 +146,17 @@ namespace ICSharpCode.Reporting.Addin.DesignableItems
|
|
|
|
|
|
|
|
|
|
public static GraphicsPath Create(Rectangle rect, int radius, RectangleCorners c) |
|
|
|
|
{ return Create(rect.X, rect.Y, rect.Width, rect.Height, radius, c); } |
|
|
|
|
|
|
|
|
|
public static GraphicsPath Create(int x, int y, int width, int height, int radius) |
|
|
|
|
{ return Create(x, y, width, height, radius, RectangleCorners.All); } |
|
|
|
|
|
|
|
|
|
public static GraphicsPath Create(Rectangle rect, int radius) |
|
|
|
|
{ return Create(rect.X, rect.Y, rect.Width, rect.Height, radius); } |
|
|
|
|
|
|
|
|
|
public static GraphicsPath Create(int x, int y, int width, int height) |
|
|
|
|
{ return Create(x, y, width, height, 5); } |
|
|
|
|
|
|
|
|
|
public static GraphicsPath Create(Rectangle rect) |
|
|
|
|
{ return Create(rect.X, rect.Y, rect.Width, rect.Height); } |
|
|
|
|
//
|
|
|
|
|
// public static GraphicsPath Create(int x, int y, int width, int height, int radius)
|
|
|
|
|
// { return Create(x, y, width, height, radius, RectangleCorners.All); }
|
|
|
|
|
|
|
|
|
|
// public static GraphicsPath Create(Rectangle rect, int radius)
|
|
|
|
|
// { return Create(rect.X, rect.Y, rect.Width, rect.Height, radius); }
|
|
|
|
|
//
|
|
|
|
|
// public static GraphicsPath Create(int x, int y, int width, int height)
|
|
|
|
|
// { return Create(x, y, width, height, 5); }
|
|
|
|
|
|
|
|
|
|
// public static GraphicsPath Create(Rectangle rect)
|
|
|
|
|
// { return Create(rect.X, rect.Y, rect.Width, rect.Height); }
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|