Hosting Microsoft Office application inside Silverlight 4?
Posted
by Ivan Zlatanov
on Stack Overflow
See other posts from Stack Overflow
or by Ivan Zlatanov
Published on 2010-05-22T15:32:07Z
Indexed on
2010/05/22
15:41 UTC
Read the original article
Hit count: 463
I know that Silverlight 4 has the support for COM interop via the AutomationFactory class.
dynamic excel = AutomationFactory.CreateObject( "Excel.Application" );
excel.Visible = true;
Easy. But this creates a separate process for the COM object. What I am missing here is if I am actually able to actually host the office document inside my silverlight application - in a ContentPresenter for example?
Thanks in advance.
© Stack Overflow or respective owner