Series.Paste Method

Excel Developer Reference

Pastes a picture from the Clipboard as the marker on the selected series.

Syntax

expression.Paste

expression   A variable that represents a Series object.

Return Value
Variant

Remarks

This method can be used on column, bar, line, or radar charts, and it sets the MarkerStyle property to xlMarkerStylePicture.

Example

This example pastes a picture from the Clipboard into series one in Chart1.

Visual Basic for Applications
  Charts("Chart1").SeriesCollection(1).Paste

See Also