Partager via


Points.Item Method (PowerPoint)

Returns a single object from a collection.

Version Information

Version Added: PowerPoint 2007

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 that the collection contains.

Example

Note

Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.

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

With ActiveDocument.InlineShapes(1)

    If .HasChart Then

        .Chart.SeriesCollection(1).Points.Item(3). _

            MarkerStyle = xlDiamond

    End If

End With

See Also

Concepts

Points Object

Points Object Members