Series.ApplyPictToEnd property (Word)

True if a picture is applied to the end of the point or all points in the series. Read/write Boolean.

Syntax

expression.ApplyPictToEnd

expression A variable that represents a 'Series' object.

Example

The following example applies pictures to the end 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).ApplyPictToEnd = True 
 End If 
End With

See also

Series Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.