Point.ApplyPictToFront Property
True if a picture is applied to the front 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 ApplyPictToFront As Boolean
Get
Set
'Usage
Dim instance As Point
Dim value As Boolean
value = instance.ApplyPictToFront
instance.ApplyPictToFront = value
bool ApplyPictToFront { get; set; }
Property Value
Type: System.Boolean
Examples
This example applies pictures to the front 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).ApplyPictToFront= True
End If
End With