CanvasShapes.AddCurve Method

Adds a Bézier curve in a drawing canvas.

Namespace:  Microsoft.Office.Interop.Word
Assembly:  Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)

Syntax

'Declaration
Function AddCurve ( _
    ByRef SafeArrayOfPoints As Object _
) As Shape
'Usage
Dim instance As CanvasShapes
Dim SafeArrayOfPoints As Object
Dim returnValue As Shape

returnValue = instance.AddCurve(SafeArrayOfPoints)
Shape AddCurve(
    ref Object SafeArrayOfPoints
)

Parameters

  • SafeArrayOfPoints
    Type: System.Object%
    An array of coordinate pairs that specifies the vertices and control points of the curve. The first point you specify is the starting vertex, and the next two points are control points for the first Bézier segment. Then, for each additional segment of the curve, you specify a vertex and two control points. The last point you specify is the ending vertex for the curve. Note that you must always specify 3n + 1 points, where n is the number of segments in the curve.

Return Value

Type: Microsoft.Office.Interop.Word.Shape

See Also

Reference

CanvasShapes Interface

CanvasShapes Members

Microsoft.Office.Interop.Word Namespace