Points.Item method (Word)
Returns a single object from a collection.
expression.Item (Index)
expression A variable that represents a 'Points' object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
Index | Required | Long | The index number for the object. |
A Point object that the collection contains.
The following example sets the marker style for the third point in series one in embedded chart one on worksheet one. The specified series must be a 2D line, scatter, or radar series.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
.Chart.SeriesCollection(1).Points.Item(3). _
MarkerStyle = xlDiamond
End If
End With
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.