XFINIUM.PDF Documentation
AddPolyBezierTo Method



An array of points that define the Bezier curves.
Adds a series of connected Bezier curves to current subpath.
Syntax
'Declaration
 
Public Sub AddPolyBezierTo( _
   ByVal points() As PdfPoint _
) 
'Usage
 
Dim instance As PdfPath
Dim points() As PdfPoint
 
instance.AddPolyBezierTo(points)
public void AddPolyBezierTo( 
   PdfPoint[] points
)
public:
void AddPolyBezierTo( 
   array<PdfPoint^>^ points
) 

Parameters

points
An array of points that define the Bezier curves.
Exceptions
ExceptionDescription
System.ArgumentNullExceptionThrown when points parameter is null.
Remarks
Each Bezier curve is defined by 4 points. The first curve uses the current point as its first control point and each following curve uses the last point of the previous curve as its first control point.
The last point in the array becomes the new current point in the path.
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

PdfPath Class
PdfPath Members

Send Feedback