Silverlight Excel Automation Factory API Documentation Hi Im using Excel Automation Factory to export data from silverlight to excel. Problem is I can't find documentation on using excel this way. All I could find where some small tutorial from which i could extract some data like :
dynamic excel;
excel = AutomationFactory.CreateObject("Excel.Application");
excel.Visible = true;
dynamic workbook = excel.workbooks;
workbook.Add();
but thas all! Where Can I find Some Excel Automation Factory Documentation?