ImportXml
İçindekiler
[
Saklamak
]ImportXml(string, string, int, int)
Bir XML veri dosyasını çalışma kitabına aktarır/günceller.
public void ImportXml(string url, string sheetName, int row, int col)
Parametre | Tip | Tanım |
---|---|---|
url | String | xml dosyasının url’si/yolu. |
sheetName | String | hedef sayfa adı. |
row | Int32 | hedef satır |
col | Int32 | hedef sütun |
Örnekler
Aşağıdaki kod, xml verilerini Hücre A1’deki ‘Sayfa 1’ çalışma sayfasına aktarır.
Workbook wb = new Workbook("Book1.xlsx");
wb.ImportXml("xml.xml", "Sheet1", 0, 0);
wb.Save("output.xlsx");
Ayrıca bakınız
- class Workbook
- ad alanı Aspose.Cells
- toplantı Aspose.Cells
ImportXml(Stream, string, int, int)
Bir XML veri dosyasını çalışma kitabına aktarır/günceller.
public void ImportXml(Stream stream, string sheetName, int row, int col)
Parametre | Tip | Tanım |
---|---|---|
stream | Stream | xml dosya akışı. |
sheetName | String | hedef sayfa adı. |
row | Int32 | hedef satır. |
col | Int32 | hedef sütun. |
Ayrıca bakınız
- class Workbook
- ad alanı Aspose.Cells
- toplantı Aspose.Cells