public static void FillRoundedRectangle(
this Graphics graphics,
Brush brush,
RectangleF bounds,
float radiusTopLeft,
float radiusTopRight,
float radiusBottomRight,
float radiusBottomLeft
)
<ExtensionAttribute>
Public Shared Sub FillRoundedRectangle (
graphics As Graphics,
brush As Brush,
bounds As RectangleF,
radiusTopLeft As Single,
radiusTopRight As Single,
radiusBottomRight As Single,
radiusBottomLeft As Single
)
public:
[ExtensionAttribute]
static void FillRoundedRectangle(
Graphics^ graphics,
Brush^ brush,
RectangleF bounds,
float radiusTopLeft,
float radiusTopRight,
float radiusBottomRight,
float radiusBottomLeft
)
[<ExtensionAttribute>]
static member FillRoundedRectangle :
graphics : Graphics *
brush : Brush *
bounds : RectangleF *
radiusTopLeft : float32 *
radiusTopRight : float32 *
radiusBottomRight : float32 *
radiusBottomLeft : float32 -> unit
If a corner radius parameter is negative, its absolute value will be used. If the sum of any adjacent corner radius parameters is greater than the corresponding side of the bounding rectangle, then all corner radius parameters will be scaled down proportionally to fit into the bounding rectangle.