'Declaration
Public Overloads Sub DrawBezier( _ ByVal pen As PdfPen, _ ByVal x1 As Double, _ ByVal y1 As Double, _ ByVal x2 As Double, _ ByVal y2 As Double, _ ByVal x3 As Double, _ ByVal y3 As Double, _ ByVal x4 As Double, _ ByVal y4 As Double _ )
'Usage
Dim instance As PdfGraphics Dim pen As PdfPen Dim x1 As Double Dim y1 As Double Dim x2 As Double Dim y2 As Double Dim x3 As Double Dim y3 As Double Dim x4 As Double Dim y4 As Double instance.DrawBezier(pen, x1, y1, x2, y2, x3, y3, x4, y4)
Parameters
- pen
- PdfPen object that determines the color, width, and style of the curve.
- x1
- The x-coordinate of the starting point of the curve.
- y1
- The y-coordinate of the starting point of the curve.
- x2
- The x-coordinate of the first control point of the curve.
- y2
- The y-coordinate of the first control point of the curve.
- x3
- The x-coordinate of the second control point of the curve.
- y3
- The y-coordinate of the second control point of the curve.
- x4
- The x-coordinate of the ending point of the curve.
- y4
- The y-coordinate of the ending point of the curve.