Point.Paste method (Word)
Pastes a picture from the Clipboard as the marker on the selected point.
expression.Paste
expression A variable that represents a 'Point' object.
Use this method on column, bar, line, or radar charts, and it sets the MarkerStyle property to xlMarkerStylePicture.
The following example pastes a picture from the Clipboard into point one in series one for the first chart in the active document.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
.Chart.SeriesCollection(1).Points(1).Paste
End If
End With
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.