'Declaration
Public Sub AddArcFromCurrentPoint( _ ByVal left As Double, _ ByVal top As Double, _ ByVal width As Double, _ ByVal height As Double, _ ByVal startAngle As Double, _ ByVal sweepAngle As Double, _ ByVal fromCurrentPoint As Boolean _ )
'Usage
Dim instance As PdfPath Dim left As Double Dim top As Double Dim width As Double Dim height As Double Dim startAngle As Double Dim sweepAngle As Double Dim fromCurrentPoint As Boolean instance.AddArcFromCurrentPoint(left, top, width, height, startAngle, sweepAngle, fromCurrentPoint)
public void AddArcFromCurrentPoint( double left, double top, double width, double height, double startAngle, double sweepAngle, bool fromCurrentPoint )
public: void AddArcFromCurrentPoint( double left, double top, double width, double height, double startAngle, double sweepAngle, bool fromCurrentPoint )
Parameters
- left
- x position of rectangle's top left corner.
- top
- y position of rectangle's top left corner.
- width
- The rectangle width.
- height
- The rectangle height.
- startAngle
- Angle in degrees measured clockwise from the x-axis to the starting point of the arc.
- sweepAngle
- Angle in degrees measured clockwise from the startAngle parameter to ending point of the arc.
- fromCurrentPoint
- True if the arc starts from current path point.