ExportExcelFile
İçindekiler
[
Saklamak
]ExportExcelFile(string)
Bir excel dosyasına dışa aktarır.
public void ExportExcelFile(string fileName)
Örnekler
[C#]
private void button1_Click(object sender, System.EventArgs e)
{
gridDesktop1.Worksheets.ExportExcelFile("savedemo.xls");
}
[Visual Basic]
Private Sub menuItem1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles menuItem7.Click
gridDesktop1.Worksheets.ExportExcelFile("savedemo.xls")
End Sub
Ayrıca bakınız
- class GridDesktop
- ad alanı Aspose.Cells.GridDesktop
- toplantı Aspose.Cells.GridDesktop
ExportExcelFile(string, FileFormatType)
Bir excel dosyasına dışa aktarır.
public void ExportExcelFile(string fileName, FileFormatType fileFormatType)
Parametre | Tip | Tanım |
---|---|---|
fileName | String | Oluşturulan dosyanın adı. |
fileFormatType | FileFormatType | Excel dosya biçimi türü. |
Ayrıca bakınız
- enum FileFormatType
- class GridDesktop
- ad alanı Aspose.Cells.GridDesktop
- toplantı Aspose.Cells.GridDesktop
ExportExcelFile(Stream)
Disk IO akışı veya bellek akışı dahil olmak üzere bir excel dosya akışına dışa aktarır.
public void ExportExcelFile(Stream stream)
Örnekler
[C#]
private void button1_Click(object sender, System.EventArgs e)
{
FileStream fs = new FileStream("d:\\bookx.xls", FileMode.OpenOrCreate);
try
{
gridDesktop1.Worksheets.ExportExcelFile(fs);
}
catch(Exception ex)
{
}
finally
{
fs.Close();
}
}
[Visual Basic]
Private Sub menuItem1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles menuItem6.Click
Dim fs As FileStream = New FileStream("d:\bookx.xls", FileMode.OpenOrCreate)
Try
gridDesktop1.Worksheets.ExportExcelFile(fs)
Catch ex As Exception
Throw ex
Finally
fs.Close()
End Try
End Sub
Ayrıca bakınız
- class GridDesktop
- ad alanı Aspose.Cells.GridDesktop
- toplantı Aspose.Cells.GridDesktop
ExportExcelFile(Stream, FileFormatType)
Disk IO akışı veya bellek akışı dahil olmak üzere bir excel dosya akışına dışa aktarır.
public void ExportExcelFile(Stream stream, FileFormatType fileFormatType)
Parametre | Tip | Tanım |
---|---|---|
stream | Stream | Elektronik tablonun kaydedileceği yere akış yapın. |
fileFormatType | FileFormatType | Excel dosya biçimi türü. |
Ayrıca bakınız
- enum FileFormatType
- class GridDesktop
- ad alanı Aspose.Cells.GridDesktop
- toplantı Aspose.Cells.GridDesktop