Point.SecondaryPlot Property
True if the point is in the secondary section of either a pie of pie chart or a bar of pie chart. Applies only to points on pie of pie charts or bar of pie charts. Read/write Boolean.
Namespace: Microsoft.Office.Interop.PowerPoint
Assembly: Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)
Syntax
'Declaration
Property SecondaryPlot As Boolean
Get
Set
'Usage
Dim instance As Point
Dim value As Boolean
value = instance.SecondaryPlot
instance.SecondaryPlot = value
bool SecondaryPlot { get; set; }
Property Value
Type: System.Boolean
Examples
This example must be run on either a pie of pie chart or a bar of pie chart. The example moves point four to the secondary section of the chart.
With ActivePresentation.Slides(1).Shapes(1)
If .HasChart Then
With .Chart.SeriesCollection(1)
.Points(4).SecondaryPlot = True
End With
End If
End With