XFINIUM.PDF Documentation
YCurveTo Method



X coordinate of first control point.
Y coordinate of first control point.
X coordinate of curve end point.
Y coordinate of curve end point.
Append a cubic Bézier curve to the current path.
Operator: y
Syntax
'Declaration
 
Public Sub YCurveTo( _
   ByVal x1 As Double, _
   ByVal y1 As Double, _
   ByVal x3 As Double, _
   ByVal y3 As Double _
) 
'Usage
 
Dim instance As PdfContentStream
Dim x1 As Double
Dim y1 As Double
Dim x3 As Double
Dim y3 As Double
 
instance.YCurveTo(x1, y1, x3, y3)
public void YCurveTo( 
   double x1,
   double y1,
   double x3,
   double y3
)
public:
void YCurveTo( 
   double x1,
   double y1,
   double x3,
   double y3
) 

Parameters

x1
X coordinate of first control point.
y1
Y coordinate of first control point.
x3
X coordinate of curve end point.
y3
Y coordinate of curve end point.
Remarks
The curve extends from the current point to the point (x3, y3), using (x1, y1) and (x3, y3) as the Bézier control points. The new current point is (x3, y3).
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

PdfContentStream Class
PdfContentStream Members

Send Feedback