VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Pdf.Drawing Namespace / PdfGraphics Class / FillRectangle Methods / FillRectangle(PdfBrush,Single,Single,Single,Single) Method
Syntax Requirements SeeAlso
In This Topic
    FillRectangle(PdfBrush,Single,Single,Single,Single) Method (PdfGraphics)
    In This Topic
    Fills the interior of a rectangle specified by a pair of coordinates, a width, and a height.
    Syntax
    'Declaration
    
    Public Overloads Sub FillRectangle( _
    ByVal brush
    PdfBrush that determines the characteristics of the fill.
    As PdfBrush, _
    ByVal x
    The x-coordinate of the bottom-left corner of the rectangle to fill.
    As Single, _
    ByVal y
    The y-coordinate of the bottom-left corner of the rectangle to fill.
    As Single, _
    ByVal width
    Width of the rectangle to fill.
    As Single, _
    ByVal height
    Height of the rectangle to fill.
    As Single _
    )
    public void FillRectangle(
    PdfBrush brush,
    float x,
    float y,
    float width,
    float height
    )
    public: void FillRectangle(
    PdfBrush* brush,
    float x,
    float y,
    float width,
    float height
    )
    public:
    void FillRectangle(
    PdfBrush^ brush,
    float x,
    float y,
    float width,
    float height
    )

    Parameters

    brush
    PdfBrush that determines the characteristics of the fill.
    x
    The x-coordinate of the bottom-left corner of the rectangle to fill.
    y
    The y-coordinate of the bottom-left corner of the rectangle to fill.
    width
    Width of the rectangle to fill.
    height
    Height of the rectangle to fill.
    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also