PrintDocument for WinForms | ComponentOne
C1.Win.PrintPreview.4.8 Assembly / C1.Win.C1Preview.Design Namespace / SampleC1PrintDocument Class / RenderBlockArc Method / RenderBlockArc(Unit,Unit,Single,Single,LineDef,Brush) Method
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 C1.C1Preview.LineDef to draw the arc with.
The fill brush.

In This Topic
    RenderBlockArc(Unit,Unit,Single,Single,LineDef,Brush) Method
    In This Topic
    Renders an arc into the block flow of the current document.
    Syntax
    'Declaration
     
    Public Overloads Function RenderBlockArc( _
       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 RenderBlockArc( 
       Unit width,
       Unit height,
       float startAngle,
       float sweepAngle,
       LineDef line,
       Brush fillBrush
    )

    Parameters

    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).
    line
    The C1.C1Preview.LineDef to draw the arc 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 C1.C1Preview.C1PrintDocument.StartDoc and C1.C1Preview.C1PrintDocument.EndDoc methods on the current document. For details, see C1.C1Preview.C1PrintDocument.RenderBlock.

    See Also