ActiveReports 14 .NET Edition
GrapeCity.ActiveReports Assembly / GrapeCity.ActiveReports Namespace / GraphicsExtensions Class / FillRound Method
The graphics to draw on.
System.Drawing.Rectangle structure that defines the boundaries of the round rectangle.
System.Drawing.Brush that determines the characteristics of the fill.
The top left rounding radius.
The top right rounding radius.
The bottom right rounding radius.
The bottom left rounding radius.

In This Topic
    FillRound Method
    In This Topic
    Fills the round rectangle.
    Syntax
    'Declaration
     
    Public Shared Sub FillRound( _
       ByVal graphics As Graphics, _
       ByVal rect As Rectangle, _
       ByVal brush As Brush, _
       ByVal tl As Integer, _
       ByVal tr As Integer, _
       ByVal br As Integer, _
       ByVal bl As Integer _
    ) 
    public static void FillRound( 
       Graphics graphics,
       Rectangle rect,
       Brush brush,
       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.
    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