Share via


Points.Item Method

Excel Developer Reference

Returns a single object from a collection.

Syntax

expression.Item(Index)

expression   A variable that represents a Points object.

Parameters

Name Required/Optional Data Type Description
Index Required Long The index number for the object.

Return Value
A Point object contained by the collection.

Example

This 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 2-D line, scatter, or radar series.

Visual Basic for Applications
  Worksheets(1).ChartObjects(1).Chart. _
    SeriesCollection(1).Points.Item(3).MarkerStyle = xlDiamond

See Also