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
أنظر أيضا
- class GridDesktop
- مساحة الاسم Aspose.Cells.GridDesktop
- المجسم Aspose.Cells.GridDesktop
ImportExcelFile(Stream, bool)
عمليات الاستيراد من دفق ملف Excel ، بما في ذلك دفق ملف القرص أو دفق الذاكرة.
public void ImportExcelFile(Stream stream, bool runFormulas)
معامل | يكتب | وصف |
---|---|---|
stream | Stream | كائن تيار. |
runFormulas | Boolean | إذا كان هذا صحيحًا ، ستستدعي هذه الطريقة طريقة RunAllFormulas. |
أنظر أيضا
- class GridDesktop
- مساحة الاسم Aspose.Cells.GridDesktop
- المجسم Aspose.Cells.GridDesktop
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
أنظر أيضا
- class GridDesktop
- مساحة الاسم Aspose.Cells.GridDesktop
- المجسم Aspose.Cells.GridDesktop
ImportExcelFile(string, bool)
يتم الاستيراد من ملف Excel.
public void ImportExcelFile(string fileName, bool runFormulas)
معامل | يكتب | وصف |
---|---|---|
fileName | String | اسم ملف اكسل. |
runFormulas | Boolean | إذا كان هذا صحيحًا ، ستستدعي هذه الطريقة طريقة RunAllFormulas. |
أنظر أيضا
- class GridDesktop
- مساحة الاسم Aspose.Cells.GridDesktop
- المجسم Aspose.Cells.GridDesktop
ImportExcelFile(Stream, string, string, bool, bool)
يتم الاستيراد من ملف Excel.
public void ImportExcelFile(Stream stream, string passwordtoOpen, string passwordtoModify,
bool openasReadOnly, bool runFormulas)
معامل | يكتب | وصف |
---|---|---|
stream | Stream | دفق ملف اكسل. |
passwordtoOpen | String | فتح كلمة المرور للملف المشفر. |
passwordtoOpen | String | تعديل كلمة المرور للملف المحمي. |
openasReadOnly | Boolean | ما إذا كان سيتم فتح الملف كـ ReadOnly. |
runFormulas | Boolean | إذا كان هذا صحيحًا ، ستستدعي هذه الطريقة طريقة RunAllFormulas. |
أنظر أيضا
- class GridDesktop
- مساحة الاسم Aspose.Cells.GridDesktop
- المجسم Aspose.Cells.GridDesktop
ImportExcelFile(string, string, string, bool, bool)
يتم الاستيراد من ملف Excel.
public void ImportExcelFile(string fileName, string passwordtoOpen, string passwordtoModify,
bool openasReadOnly, bool runFormulas)
معامل | يكتب | وصف |
---|---|---|
fileName | String | اسم ملف اكسل. |
passwordtoOpen | String | فتح كلمة المرور للملف المشفر. |
passwordtoOpen | String | تعديل كلمة المرور للملف المحمي. |
openasReadOnly | Boolean | ما إذا كان سيتم فتح الملف كـ ReadOnly. |
runFormulas | Boolean | إذا كان هذا صحيحًا ، ستستدعي هذه الطريقة طريقة RunAllFormulas. |
أنظر أيضا
- class GridDesktop
- مساحة الاسم Aspose.Cells.GridDesktop
- المجسم Aspose.Cells.GridDesktop
ImportExcelFile(string, int)
يستورد ورقة عمل من ملف Excel .
public void ImportExcelFile(string fileName, int sheetIndex)
معامل | يكتب | وصف |
---|---|---|
fileName | String | اسم ملف اكسل. |
sheetIndex | Int32 | فهرس الورقة المراد استيرادها. |
أنظر أيضا
- class GridDesktop
- مساحة الاسم Aspose.Cells.GridDesktop
- المجسم Aspose.Cells.GridDesktop