PrintDocument for WinForms | ComponentOne
C1.PrintDocument.4.5.2 Assembly / C1.C1Preview Namespace / C1PrintDocument Class / RenderBlockPie Method / RenderBlockPie(Unit,Unit,Single,Single,LineDef,Brush) Method
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 LineDef to draw the pie with.
The fill brush.

In This Topic
    RenderBlockPie(Unit,Unit,Single,Single,LineDef,Brush) Method
    In This Topic
    Renders a pie into the block flow of the current document.
    Syntax
    'Declaration
     
    Public Overloads Function RenderBlockPie( _
       ByVal width As Unit, _
       ByVal height As Unit, _
       ByVal startAngle As Single, _
       ByVal sweepAngle As Single, _
       ByVal line As LineDef, _
       ByVal fillBrush As Brush _
    ) As Boolean
    public bool RenderBlockPie( 
       Unit width,
       Unit height,
       float startAngle,
       float sweepAngle,
       LineDef line,
       Brush fillBrush
    )

    Parameters

    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).
    line
    The LineDef to draw the pie with.
    fillBrush
    The fill brush.

    Return Value

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

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

    See Also