Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
55 lines (26 loc) · 1.07 KB

series-applypicttoend-property-powerpoint.md

File metadata and controls

55 lines (26 loc) · 1.07 KB
title ms.prod api_name ms.assetid ms.date
Series.ApplyPictToEnd Property (PowerPoint)
powerpoint
PowerPoint.Series.ApplyPictToEnd
fa71354c-c76a-545a-ae3c-22ae36260365
06/08/2017

Series.ApplyPictToEnd Property (PowerPoint)

True if a picture is applied to the end of the point or all points in the series. Read/write Boolean.

Syntax

expression. ApplyPictToEnd

expression A variable that represents a Series object.

Example

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

The following example applies pictures to the end of all points in the first series of the first chart in the active document. The series must already have pictures applied to it (setting this property changes the picture orientation).

With ActiveDocument.InlineShapes(1)

    If .HasChart Then

        .Chart.SeriesCollection(1).ApplyPictToEnd = True

    End If

End With

See also

Concepts

Series Object