تصدير البيانات من Grid
تصدير محتويات الجدول
التصدير إلى DataTable محدد
لتصدير محتويات الجدول إلى كائن DataTable محدد، يُرجى اتباع الخطوات التالية: أضف عنصر تحكم Aspose.Cells.GridDesktop إلى النموذج الخاص بك.
- أنشئ كائن DataTable محدد وفقًا لاحتياجاتك.
- قم بتصدير بيانات ورقة العمل المحددة إلى كائن DataTable المحدد الخاص بك.
في المثال أدناه، قمنا بإنشاء كائن DataTable محدد يحتوي على أربعة أعمدة. وأخيرًا، قمنا بتصدير بيانات الورقة العمل (بدءًا من أول خلية مع 69 صفًا و 4 أعمدة) إلى كائن DataTable تم إنشاؤه بواسطتنا مسبقًا.
مثال:
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// Creating a new DataTable object | |
DataTable dataTable = new DataTable(); | |
// Adding specific columns to the DataTable object | |
dataTable.Columns.Add("ProductName", System.Type.GetType("System.String")); | |
dataTable.Columns.Add("CategoryName", System.Type.GetType("System.String")); | |
dataTable.Columns.Add("QuantityPerUnit", System.Type.GetType("System.String")); | |
dataTable.Columns.Add("UnitsInStock", System.Type.GetType("System.Int32")); | |
// Exporting the data of the first worksheet of the Grid to the specific DataTable object | |
dataTable = gridDesktop1.Worksheets[0].ExportDataTable(dataTable, 0, 0, 69, 4, true); |
التصدير إلى DataTable جديد
في بعض الأحيان، قد لا يكون المطورون مهتمين بإنشاء كائن DataTable خاص بهم وقد يكون لديهم احتياج بسيط لتصدير بيانات الورقة العمل إلى كائن DataTable جديد. سيكون أسرع طريقة للمطورين هي تصدير بيانات الورقة العمل مباشرة.
في المثال أدناه، حاولنا طريقة مختلفة لشرح استخدام طريقة ExportDataTable. لقد استخدمنا إشارة الورقة العمل التي تكون نشطة حاليًا ومن ثم قمنا بتصدير بيانات الورقة العمل الكاملة إلى كائن DataTable جديد. الآن، يمكن استخدام هذا الكائن DataTable بأي طريقة يرغب فيها المطور. على سبيل المثال، قد يقوم المطور بربط هذا الكائن DataTable بـ DataGrid لعرض البيانات.
مثال:
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// Accessing the reference of the worksheet that is currently active | |
Worksheet sheet = gridDesktop1.GetActiveWorksheet(); | |
//Getting the total number of rows and columns inside the worksheet | |
int totalRows = sheet.RowsCount; | |
int totalCols = sheet.ColumnsCount; | |
// Exporting the data of the active worksheet to a new DataTable object | |
DataTable table = sheet.ExportDataTable(0, 0, totalRows, totalCols, false, true); |