XFINIUM.PDF Documentation
DrawBezier(PdfPen,Double,Double,Double,Double,Double,Double,Double,Double) Method



PdfPen object that determines the color, width, and style of the curve.
The x-coordinate of the starting point of the curve.
The y-coordinate of the starting point of the curve.
The x-coordinate of the first control point of the curve.
The y-coordinate of the first control point of the curve.
The x-coordinate of the second control point of the curve.
The y-coordinate of the second control point of the curve.
The x-coordinate of the ending point of the curve.
The y-coordinate of the ending point of the curve.
Draws a Bézier spline defined by four ordered pairs of coordinates that represent points.
Syntax
'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)
public void DrawBezier( 
   PdfPen pen,
   double x1,
   double y1,
   double x2,
   double y2,
   double x3,
   double y3,
   double x4,
   double y4
)
public:
void DrawBezier( 
   PdfPen^ pen,
   double x1,
   double y1,
   double x2,
   double y2,
   double x3,
   double y3,
   double x4,
   double 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.
Requirements

Supported .NET Platforms: .NET 2.0 - .NET 4.6, Windows Forms, ASP.NET, Windows Presentation Foundation 4.x, Silverlight 5, WinRT, Universal Windows Platform, Windows Phone 8 & 8.1, Xamarin iOS & Android, Portable Class Library


Target Platforms:Windows 10, Windows 8.1, Windows 8 , Windows 7, Windows Vista SP1 or later, Windows Server 2008, Windows Server 2008 R2

See Also

Reference

PdfGraphics Class
PdfGraphics Members
Overload List

Send Feedback