ImportExcelFile
内容
[
隐藏
]ImportExcelFile(Stream)
从 excel 文件流导入,包括磁盘文件流或内存流。
public void ImportExcelFile(Stream stream)
例子
[C#]
private void button1_Click(object sender, System.EventArgs e)
{
FileStream fs = new FileStream("d:\\bookx.xls", FileMode.Open);
try
{
gridDesktop1.ImportExcelFile(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.Open)
Try
gridDesktop1.ImportExcelFile(fs)
Catch ex As Exception
Throw ex
Finally
fs.Close()
End Try
End Sub
也可以看看
ImportExcelFile(Stream, bool)
从 excel 文件流导入,包括磁盘文件流或内存流。
public void ImportExcelFile(Stream stream, bool runFormulas)
范围 | 类型 | 描述 |
---|---|---|
stream | Stream | 流对象。 |
runFormulas | Boolean | 如果为真,此方法将调用 RunAllFormulas 方法。 |
也可以看看
ImportExcelFile(string)
从 excel 文件导入。
public void ImportExcelFile(string fileName)
例子
[C#]
private void button1_Click(object sender, System.EventArgs e)
{
gridDesktop1.ImportExcelFile("FinancialPlan.xls");
}
[Visual Basic]
Private Sub menuItem1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles menuItem6.Click
gridDesktop1.ImportExcelFile("FinancialPlan.xls")
End Sub
也可以看看
ImportExcelFile(string, bool)
从 excel 文件导入。
public void ImportExcelFile(string fileName, bool runFormulas)
范围 | 类型 | 描述 |
---|---|---|
fileName | String | excel文件名。 |
runFormulas | Boolean | 如果为真,此方法将调用 RunAllFormulas 方法。 |
也可以看看
ImportExcelFile(Stream, string, string, bool, bool)
从 excel 文件导入。
public void ImportExcelFile(Stream stream, string passwordtoOpen, string passwordtoModify,
bool openasReadOnly, bool runFormulas)
范围 | 类型 | 描述 |
---|---|---|
stream | Stream | excel文件流。 |
passwordtoOpen | String | 加密文件的打开密码。 |
passwordtoOpen | String | 受保护文件的修改密码。 |
openasReadOnly | Boolean | 是否以 ReadOnly 方式打开文件。 |
runFormulas | Boolean | 如果为真,此方法将调用 RunAllFormulas 方法。 |
也可以看看
ImportExcelFile(string, string, string, bool, bool)
从 excel 文件导入。
public void ImportExcelFile(string fileName, string passwordtoOpen, string passwordtoModify,
bool openasReadOnly, bool runFormulas)
范围 | 类型 | 描述 |
---|---|---|
fileName | String | excel文件名。 |
passwordtoOpen | String | 加密文件的打开密码。 |
passwordtoOpen | String | 受保护文件的修改密码。 |
openasReadOnly | Boolean | 是否以 ReadOnly 方式打开文件。 |
runFormulas | Boolean | 如果为真,此方法将调用 RunAllFormulas 方法。 |
也可以看看
ImportExcelFile(string, int)
从 excel 文件导入工作表。
public void ImportExcelFile(string fileName, int sheetIndex)
范围 | 类型 | 描述 |
---|---|---|
fileName | String | excel文件名。 |
sheetIndex | Int32 | 要导入的工作表的索引。 |