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

    Parameters

    pen
    PdfPen that determines the color, width, and style of the ellipse.
    brush
    PdfBrush that determines the characteristics of the fill.
    x
    The x-coordinate of the bottom-left corner of the bounding rectangle that defines the ellipse.
    y
    The y-coordinate of the bottom-left corner of the bounding rectangle that defines the ellipse.
    width
    Width of the bounding rectangle that defines the ellipse.
    height
    Height of the bounding rectangle that defines the ellipse.
    Requirements

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

    See Also