ActiveReports 14 .NET Edition
GrapeCity.ActiveReports Assembly / GrapeCity.ActiveReports Namespace / GraphicsExtensions Class / DrawRoundWithDoubleLine Method
The graphics to draw on.
System.Drawing.Rectangle structure that defines the boundaries of the round rectangle.
System.Drawing.Pen that determines the color, width, and style of the line.
The style of double line.
The top left rounding radius.
The top right rounding radius.
The bottom right rounding radius.
The bottom left rounding radius.

In This Topic
    DrawRoundWithDoubleLine Method
    In This Topic
    Draws a round rectangle using a double line.
    Syntax
    'Declaration
     
    Public Shared Sub DrawRoundWithDoubleLine( _
       ByVal graphics As Graphics, _
       ByVal rect As Rectangle, _
       ByVal pen As Pen, _
       ByVal style As Integer, _
       ByVal tl As Integer, _
       ByVal tr As Integer, _
       ByVal br As Integer, _
       ByVal bl As Integer _
    ) 
    public static void DrawRoundWithDoubleLine( 
       Graphics graphics,
       Rectangle rect,
       Pen pen,
       int style,
       int tl,
       int tr,
       int br,
       int bl
    )

    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