public static void FillRoundedRectangle(
this Graphics graphics,
Brush brush,
Rectangle bounds,
int radiusTopLeft,
int radiusTopRight,
int radiusBottomRight,
int radiusBottomLeft
)
<ExtensionAttribute>
Public Shared Sub FillRoundedRectangle (
graphics As Graphics,
brush As Brush,
bounds As Rectangle,
radiusTopLeft As Integer,
radiusTopRight As Integer,
radiusBottomRight As Integer,
radiusBottomLeft As Integer
)
public:
[ExtensionAttribute]
static void FillRoundedRectangle(
Graphics^ graphics,
Brush^ brush,
Rectangle bounds,
int radiusTopLeft,
int radiusTopRight,
int radiusBottomRight,
int radiusBottomLeft
)
[<ExtensionAttribute>]
static member FillRoundedRectangle :
graphics : Graphics *
brush : Brush *
bounds : Rectangle *
radiusTopLeft : int *
radiusTopRight : int *
radiusBottomRight : int *
radiusBottomLeft : int -> 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.