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

Latest commit

 

History

History
67 lines (33 loc) · 1.19 KB

point-secondaryplot-property-powerpoint.md

File metadata and controls

67 lines (33 loc) · 1.19 KB
title keywords f1_keywords ms.prod api_name ms.assetid ms.date
Point.SecondaryPlot Property (PowerPoint)
vbapp10.chm67198
vbapp10.chm67198
powerpoint
PowerPoint.Point.SecondaryPlot
37bba3d7-2bb7-fd46-eaf8-eb8b44aa071c
06/08/2017

Point.SecondaryPlot Property (PowerPoint)

True if the point is in the secondary section of either a pie-of-pie chart or a bar-of-pie chart. Read/write Boolean.

Syntax

expression. SecondaryPlot

expression A variable that represents a Point object.

Remarks

This property applies only to points on pie-of-pie charts or bar-of-pie charts.

Example

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

The following example moves point four to the secondary section of the chart. You must run this example on either a pie-of-pie chart or a bar-of-pie chart.

With ActiveDocument.InlineShapes(1)

    If .HasChart Then

        With .Chart.SeriesCollection(1)

            .Points(4).SecondaryPlot = True

        End With

    End If

End With

See also

Concepts

Point Object