- Home
- Forum
- ASP.NET Web Forms (Classic)
- Excel XML ?
Excel XML ?
Hi,
Is it possible to load or save an XML with the XLSIO, like it's possible to do it in Excel ?
Thanks,
Greg
Is it possible to load or save an XML with the XLSIO, like it's possible to do it in Excel ?
Thanks,
Greg
SIGN IN To post a reply.
4 Replies
AD
Administrator
Syncfusion Team
August 7, 2008 09:09 AM UTC
Hi,
No one knows ?
Regards,
>Hi,
Is it possible to load or save an XML with the XLSIO, like it's possible to do it in Excel ?
Thanks,
Greg
No one knows ?
Regards,
>Hi,
Is it possible to load or save an XML with the XLSIO, like it's possible to do it in Excel ?
Thanks,
Greg
YG
Yavanaarasi G
Syncfusion Team
August 7, 2008 10:43 AM UTC
Hi Greg,
Thank you for your interest in Syncfusion products.
Yes. It is possible to load or save an XML with XlsIO. You can save and read the xml file by using the below code snippet:
Also, please refer our shipped browser sample that demonstrates reading and writing XML files.
\\Syncfusion\EssentialStudio\6.3.0.30\Windows\XlsIO.Windows\Samples\2.0\GettingStarted\ReadWriteSpreadsheetML\cs
Please try this and let me know if this helps.
Regrads,
G.Yavana
Thank you for your interest in Syncfusion products.
Yes. It is possible to load or save an XML with XlsIO. You can save and read the xml file by using the below code snippet:
IWorkbook workbook = excelEngine.Excel.Workbooks.Create(3);
IWorksheet sheet = workbook.Worksheets[0];
//Write data
sheet.Range["C3:O28"].Text = "Hello world";
//Save as SpreadsheetML:
workbook.SaveAsXml("Sample.xml", ExcelXmlSaveType.MSExcel);
//Read spreadsheetML:
IWorkbook workbook = excelEngine.Excel.Workbooks.OpenFromXml("SpreadsheetMLTemplate.xml",ExcelXmlOpenType.MSExcel);
Also, please refer our shipped browser sample that demonstrates reading and writing XML files.
\\Syncfusion\EssentialStudio\6.3.0.30\Windows\XlsIO.Windows\Samples\2.0\GettingStarted\ReadWriteSpreadsheetML\cs
Please try this and let me know if this helps.
Regrads,
G.Yavana
AD
Administrator
Syncfusion Team
August 12, 2008 12:27 PM UTC
Thank you very much !
>Hi Greg,
Thank you for your interest in Syncfusion products.
Yes. It is possible to load or save an XML with XlsIO. You can save and read the xml file by using the below code snippet:
Also, please refer our shipped browser sample that demonstrates reading and writing XML files.
\\Syncfusion\EssentialStudio\6.3.0.30\Windows\XlsIO.Windows\Samples\2.0\GettingStarted\ReadWriteSpreadsheetML\cs
Please try this and let me know if this helps.
Regrads,
G.Yavana
>Hi Greg,
Thank you for your interest in Syncfusion products.
Yes. It is possible to load or save an XML with XlsIO. You can save and read the xml file by using the below code snippet:
IWorkbook workbook = excelEngine.Excel.Workbooks.Create(3);
IWorksheet sheet = workbook.Worksheets[0];
//Write data
sheet.Range["C3:O28"].Text = "Hello world";
//Save as SpreadsheetML:
workbook.SaveAsXml("Sample.xml", ExcelXmlSaveType.MSExcel);
//Read spreadsheetML:
IWorkbook workbook = excelEngine.Excel.Workbooks.OpenFromXml("SpreadsheetMLTemplate.xml",ExcelXmlOpenType.MSExcel);
Also, please refer our shipped browser sample that demonstrates reading and writing XML files.
\\Syncfusion\EssentialStudio\6.3.0.30\Windows\XlsIO.Windows\Samples\2.0\GettingStarted\ReadWriteSpreadsheetML\cs
Please try this and let me know if this helps.
Regrads,
G.Yavana
YG
Yavanaarasi G
Syncfusion Team
August 13, 2008 07:22 AM UTC
Hi Greg,
Thank you for your update.
Please let me know if you have any other concerns.
Regards,
G.Yavana
Thank you for your update.
Please let me know if you have any other concerns.
Regards,
G.Yavana
SIGN IN To post a reply.
- 4 Replies
- 2 Participants
-
AD Administrator
- Aug 1, 2008 07:47 AM UTC
- Aug 13, 2008 07:22 AM UTC