I know that Silverlight 4 has support for COM interop via the AutomationFactory
class.
dynamic excel = AutomationFactory.CreateObject( "Excel.Application" );
excel.Visible = true;
But this creates a separate window for the COM object. What I am missing here is if I am actually able to actually host an Office document inside my Silverlight application - in a ContentPresenter for example?