views:

16

answers:

1

I need to access clipboard in silverlight.

in winform apllication:

textBox1.Text = Clipboard.GetText(TextDataFormat.Html);

but, in silverlight I can only get text

textBlock1.Text = Clipboard.GetText();

How can I get the html format of the clipboard ?

A: 

Currently this is not supported.

Darin Dimitrov