العثور على الخلايا ذات النمط المحدد
Contents
[
Hide
]
في بعض الأحيان، تحتاج إلى العثور على الخلايا ذات النمط المحدد. يمكنك استخدام Aspose.Cells للعثور على جميع الخلايا ذات النمط المشترك. توفر Aspose.Cells الخاصية FindOptions.Style التي يمكنك استخدامها لتحديد النمط الخاص للبحث عن الخلايا.
الشفرة في هذا المثال تجد جميع الخلايا التي لها نفس النمط مثل الخلية A1. بعد تنفيذ الشفرة، تحتوي جميع الخلايا التي لها نفس النمط كما في A1 على نص “تم العثور”.
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 | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
string filePath = dataDir+ "TestBook.xlsx"; | |
Workbook workbook = new Workbook(filePath); | |
Worksheet worksheet = workbook.Worksheets[0]; | |
// Access the style of cell A1 | |
Style style = worksheet.Cells["A1"].GetStyle(); | |
// Specify the style for searching | |
FindOptions options = new FindOptions(); | |
options.Style = style; | |
Cell nextCell = null; | |
do | |
{ | |
// Find the cell that has a style of cell A1 | |
nextCell = worksheet.Cells.Find(null, nextCell, options); | |
if (nextCell == null) | |
break; | |
// Change the text of the cell | |
nextCell.PutValue("Found"); | |
} while (true); | |
dataDir = dataDir + "output.out.xlsx"; | |
workbook.Save(dataDir); |