Copy Chart to Clipboard

  • Thread starter Thread starter Thomas Wieser
  • Start date Start date
T

Thomas Wieser

Hi,

how is it possible to copy the active chart in exactly the double size
as on screen to clipboard?

I tried to do it with ActiveChart.CopyPicture



Regards, Thomas
 
Hi Thomas
why not simply resize the chart in your target application?
 
Hi Frank,

why not simply resize the chart in your target application?
Simply because I need the picture in a better quality. So - is there a way?

Regards, Thomas
 
Double the size of the chart, copy it, then shrink it again.

With ActiveChart.Parent
.Width = 2 * .Width
.Height = 2 * Height
.Chart.CopyPicture Appearance:=xlScreen, _
size:=xlScreen, Format:=xlPicture
.Width = .Width / 2
.Height = .Height / 2
End With

- Jon
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top