ورقة عمل الوصول Cells
Contents
[
Hide
]
يناقش هذا الموضوع الخلايا ، بالنظر إلى Aspose.Cells. الميزة الأساسية لـGridWeb: الوصول إلى الخلايا.
الوصول إلى Cells في ورقة عمل
تحتوي كل ورقة عمل على خاصية باسم Cells وهي في الواقع مجموعة من كائنات GridCell حيث يمثل كائن GridCell خلية في Aspose.Cells.GridWeb. من الممكن الوصول إلى أي خلية باستخدام Aspose.Cells.GridWeb. هناك طريقتان مفضلتان ، تتم مناقشة كل منهما أدناه.
باستخدام Cell الاسم
جميع الخلايا لها اسم فريد. على سبيل المثال ، A1 ، A2 ، B1 ، B2 إلخ. Aspose.Cells.GridWeb يسمح للمطورين بالوصول إلى أي خلية مرغوبة باستخدام اسم الخلية. ما عليك سوى تمرير اسم الخلية (كمؤشر) إلى المجموعة Cells من GridWorksheet.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// Accessing the worksheet of the Grid that is currently active | |
GridWorksheet sheet = GridWeb1.WorkSheets[GridWeb1.ActiveSheetIndex]; | |
// Accessing "A1" cell of the worksheet | |
GridCell cell = sheet.Cells["A1"]; | |
// Display cell name and value | |
Label1.Text += "Cell Value of " + cell.Name +" is " + cell.StringValue + "<br/>"; |
استخدام فهارس الصفوف والعمود
يمكن أيضًا التعرف على الخلية من خلال موقعها من حيث فهارس الصفوف والأعمدة. فقط قم بتمرير فهارس الصفوف والعمود الخاصة بالخلية إلى مجموعة Cells من GridWorksheet. هذا النهج أسرع من الأسلوب أعلاه.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// Accessing the worksheet of the Grid that is currently active | |
GridWorksheet sheet = GridWeb1.WorkSheets[GridWeb1.ActiveSheetIndex]; | |
// Accessing "B1" cell of the worksheet using its row and column indices | |
GridCell cell = sheet.Cells[0, 1]; | |
// Display cell name and value | |
Label1.Text += "Cell Value of " + cell.Name +" is " + cell.StringValue + "<br/>"; |