2

I want to add an image of a certain DataGrid in silverlight to a word Document.

I've created a WriteableBitmap of the DataGrid but I can't find how to copy this image to the word document.

It doesn't have to be a WriteableImage. Any solution that works is fine with me.

Thanks.

Dave Clemmer
  • 3,741
  • 12
  • 49
  • 72
yulia
  • 21
  • 1
  • How are you creating your word document? Are you asking how to do this from the clipboard? – Kir Dec 02 '11 at 16:30

1 Answers1

0

Not possible as of Silverlight 5.

In Silverlight 5, access to clipboard information is limited to Unicode text access. This differs from the WPF implementation of Clipboard, which enables access to other specific types (for example, streams or images) or to data objects.

See MSDN.

David
  • 1,052
  • 1
  • 8
  • 19