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

In This Topic
    RenderDirectPie(Unit,Unit,Unit,Unit,Single,Single,Color,Unit) Method
    In This Topic
    Adds a pie to the Body of the current document at a specific position on the current page, and resolves it.
    Syntax
    'Declaration
     
    Public Overloads Sub RenderDirectPie( _
       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 RenderDirectPie( 
       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 pie (cannot be auto).
    y
    The vertical (Y) coordinate at which to render the pie (cannot be auto).
    width
    The width of the pie.
    height
    The height of the pie.
    startAngle
    The pie's starting angle (in degrees, measured clockwise from the X axis).
    sweepAngle
    The pie'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