Point.ApplyPictToFront Property (Word)
True if a picture is applied to the front of the point or all points in the series. Read/write Boolean.
Version Information
Version Added: Word 2007
Syntax
expression .ApplyPictToFront
expression A variable that represents a Point object.
Example
The following 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 ActiveDocument.InlineShapes(1)
If .HasChart Then
.Chart.SeriesCollection(1).ApplyPictToFront = True
End If
End With