Shapes.AddCurve(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a Shape object that represents a Bézier curve in a worksheet.
public:
Microsoft::Office::Interop::Excel::Shape ^ AddCurve(System::Object ^ SafeArrayOfPoints);
public Microsoft.Office.Interop.Excel.Shape AddCurve (object SafeArrayOfPoints);
Public Function AddCurve (SafeArrayOfPoints As Object) As Shape
Parameters
- SafeArrayOfPoints
- Object
Required 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.