Draws a round rectangle using a double line.
Syntax
'Declaration
Public Shared Sub DrawRoundWithDoubleLine( _
ByVal As Graphics, _
ByVal As Rectangle, _
ByVal As Pen, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer _
)
public static void DrawRoundWithDoubleLine(
Graphics ,
Rectangle ,
Pen ,
int ,
int ,
int ,
int ,
int
)
Parameters
- graphics
- The graphics to draw on.
- rect
- System.Drawing.Rectangle structure that defines the boundaries of the round rectangle.
- pen
- System.Drawing.Pen that determines the color, width, and style of the line.
- style
- The style of double line.
- 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