ShapeRange.Vertices Property
Returns the coordinates of the specified freeform drawing's vertices (and control points for Bézier curves) as a series of coordinate pairs. Read-only Object.
Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in Microsoft.Office.Interop.Excel.dll)
Syntax
'Declaration
ReadOnly Property Vertices As Object
Get
'Usage
Dim instance As ShapeRange
Dim value As Object
value = instance.Vertices
Object Vertices { get; }
Property Value
Type: System.Object
Remarks
You can use the array returned by this property as an argument to the AddCurve method or AddPolyline method.
The following table shows how the Vertices property associates the values in the array vertArray() with the coordinates of a triangle's vertices.
vertArray element |
Contains |
---|---|
vertArray(1, 1) |
The horizontal distance from the first vertex to the left side of the document |
vertArray(1, 2) |
The vertical distance from the first vertex to the top of the document |
vertArray(2, 1) |
The horizontal distance from the second vertex to the left side of the document |
vertArray(2, 2) |
The vertical distance from the second vertex to the top of the document |
vertArray(3, 1) |
The horizontal distance from the third vertex to the left side of the document |
vertArray(3, 2) |
The vertical distance from the third vertex to the top of the document |