Applies To
Point Object, Series Object.
Description
Pastes a picture from the Clipboard as the marker on the selected point or series. This method can be used on column, bar, line, or radar charts, and it sets the MarkerStyle to xlPicture.
Syntax
object.Paste
object
Required. The Point or Series object.
See Also
Copy Method, Cut Method, MarkerStyle Property.
Example
This example copies a picture to the Clipboard and then pastes it into series one in Chart1.
Worksheets("Sheet1").Activate ActiveSheet.Pictures(1).Copy Charts("Chart1").Activate ActiveChart.SeriesCollection(1).Paste