Point.ApplyPictToSides Property
True if a picture is applied to the sides of the point or all points in the series. Read/write Boolean.
Namespace: Microsoft.Office.Interop.PowerPoint
Assembly: Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)
Syntax
'Declaration
Property ApplyPictToSides As Boolean
Get
Set
'Usage
Dim instance As Point
Dim value As Boolean
value = instance.ApplyPictToSides
instance.ApplyPictToSides = value
bool ApplyPictToSides { get; set; }
Property Value
Type: System.Boolean
Examples
This example applies pictures to the sides 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 ActivePresentation.Slides(1).Shapes(1)
If .HasChart Then
.Chart.SeriesCollection(1).ApplyPictToSides= True
End If
End With