I know that Silverlight 4 supports COM interoperability through a class AutomationFactory.
dynamic excel = AutomationFactory.CreateObject( "Excel.Application" );
excel.Visible = true;
But this creates a separate window for the COM object. What am I missing here if I can really place an Office document inside my Silverlight application - for example, in ContentPresenter?
source
share