PrintDocument for WinForms | ComponentOne
C1.PrintDocument.4.5.2 Assembly / C1.C1Preview Namespace / C1PrintDocument Class / RenderDirectArc Method / RenderDirectArc(Unit,Unit,Unit,Unit,Single,Single,Color,Unit) Method
The horizontal (X) coordinate at which to render the arc (cannot be auto).
The vertical (Y) coordinate at which to render the arc (cannot be auto).
The width of the arc.
The height of the arc.
The arc's starting angle (in degrees, measured clockwise from the X axis).
The arc's sweep angle (in degrees, measured clockwise from startAngle).
The line color.
The line thickness.

In This Topic
    RenderDirectArc(Unit,Unit,Unit,Unit,Single,Single,Color,Unit) Method
    In This Topic
    Adds an arc to the Body of the current document at a specific position on the current page, and resolves it.
    Syntax
    'Declaration
     
    Public Overloads Sub RenderDirectArc( _
       ByVal x As Unit, _
       ByVal y As Unit, _
       ByVal width As Unit, _
       ByVal height As Unit, _
       ByVal startAngle As Single, _
       ByVal sweepAngle As Single, _
       ByVal lineColor As Color, _
       ByVal lineThickness As Unit _
    ) 
    public void RenderDirectArc( 
       Unit x,
       Unit y,
       Unit width,
       Unit height,
       float startAngle,
       float sweepAngle,
       Color lineColor,
       Unit lineThickness
    )

    Parameters

    x
    The horizontal (X) coordinate at which to render the arc (cannot be auto).
    y
    The vertical (Y) coordinate at which to render the arc (cannot be auto).
    width
    The width of the arc.
    height
    The height of the arc.
    startAngle
    The arc's starting angle (in degrees, measured clockwise from the X axis).
    sweepAngle
    The arc's sweep angle (in degrees, measured clockwise from startAngle).
    lineColor
    The line color.
    lineThickness
    The line thickness.
    Remarks

    This method can only be used between calls to StartDoc and EndDoc methods on the current document. For details, see RenderDirect(Unit,Unit,RenderObject,Object,Object).

    See Also