'Declaration
Public Function AddCurveToPath3( _ ByVal X1 As Single, _ ByVal Y1 As Single, _ ByVal X2 As Single, _ ByVal Y2 As Single, _ ByVal X3 As Single, _ ByVal Y3 As Single _ ) As GdPictureStatus
public GdPictureStatus AddCurveToPath3( float X1, float Y1, float X2, float Y2, float X3, float Y3 )
public function AddCurveToPath3( X1: Single; Y1: Single; X2: Single; Y2: Single; X3: Single; Y3: Single ): GdPictureStatus;
public function AddCurveToPath3( X1 : float, Y1 : float, X2 : float, Y2 : float, X3 : float, Y3 : float ) : GdPictureStatus;
Parameters
- X1
- The horizontal (X) coordinate of the first Bézier control point, expressed in the current units specified by the SetMeasurementUnit method with respect to the defined origin, related to the currently selected page.
- Y1
- The vertical (Y) coordinate of the first Bézier control point, expressed in the current units specified by the SetMeasurementUnit method with respect to the defined origin, related to the currently selected page.
- X2
- The horizontal (X) coordinate of the second Bézier control point, expressed in the current units specified by the SetMeasurementUnit method with respect to the defined origin, related to the currently selected page.
- Y2
- The vertical (Y) coordinate of the second Bézier control point, expressed in the current units specified by the SetMeasurementUnit method with respect to the defined origin, related to the currently selected page.
- X3
- The horizontal (X) coordinate of the curve's end point, expressed in the current units specified by the SetMeasurementUnit method with respect to the defined origin, related to the currently selected page.
- Y3
- The vertical (Y) coordinate of the curve's end point, expressed in the current units specified by the SetMeasurementUnit method with respect to the defined origin, related to the currently selected page.
Return Value
We strongly recommend always checking this status first.