PrintDocument for WinForms | ComponentOne
C1.Win.PrintPreview.6 Assembly / C1.Win.C1Preview.Design Namespace / SampleC1PrintDocument Class / RenderBlockEllipse Method / RenderBlockEllipse(Unit,Unit,Color,Unit,Color) Method
The width of the ellipse.
The height of the ellipse.
The line color.
The line thickness.
The ellipse fill color.

In This Topic
    RenderBlockEllipse(Unit,Unit,Color,Unit,Color) Method
    In This Topic
    Renders an ellipse into the block flow of the current document.
    Syntax
    'Declaration
     
    Public Overloads Function RenderBlockEllipse( _
       ByVal width As Unit, _
       ByVal height As Unit, _
       ByVal lineColor As Color, _
       ByVal lineThickness As Unit, _
       ByVal fillColor As Color _
    ) As Boolean
    public bool RenderBlockEllipse( 
       Unit width,
       Unit height,
       Color lineColor,
       Unit lineThickness,
       Color fillColor
    )

    Parameters

    width
    The width of the ellipse.
    height
    The height of the ellipse.
    lineColor
    The line color.
    lineThickness
    The line thickness.
    fillColor
    The ellipse fill color.

    Return Value

    true if no warnings were generated by this call, false otherwise.
    Remarks

    This method can only be used between calls to C1.C1Preview.C1PrintDocument.StartDoc and C1.C1Preview.C1PrintDocument.EndDoc methods on the current document. For details, see C1.C1Preview.C1PrintDocument.RenderBlock.

    See Also