Fills the round rectangle.
Syntax
'Declaration
Public Shared Sub FillRound( _
ByVal As Graphics, _
ByVal As Rectangle, _
ByVal As Brush, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer _
)
public static void FillRound(
Graphics ,
Rectangle ,
Brush ,
int ,
int ,
int ,
int
)
Parameters
- graphics
- The graphics to draw on.
- rect
- System.Drawing.Rectangle structure that defines the boundaries of the round rectangle.
- brush
- System.Drawing.Brush that determines the characteristics of the fill.
- tl
- The top left rounding radius.
- tr
- The top right rounding radius.
- br
- The bottom right rounding radius.
- bl
- The bottom left rounding radius.
See Also