Cells'de Değer Bulun
Contents
[
Hide
]
Aspose.Cells - Cells’de Değer Bulun
Microsoft Excel’de, kullanıcılar belirli verileri içeren hücreleri arayabilir. Örneğin, tıklamaDüzenlemekve sonraBulmakAra iletişim kutusunu açar. Kullanıcılar bir değer girer ve tıklarTamamonu aramak için Excel, eşleşen alanları vurgular.
C#
//Instantiating a Workbook object
Workbook workbook = new Workbook("../../data/test.xlsx");
//Accessing the first worksheet in the Excel file
Worksheet worksheet = workbook.Worksheets[0];
//Finding the cell containing the specified formula
Cells cells = worksheet.Cells;
//Instantiate FindOptions
FindOptions findOptions = new FindOptions();
//Finding the cell containing a string value that starts with "Or"
findOptions.LookAtType = LookAtType.StartWith;
Cell cell = cells.Find("SH", null, findOptions);
//Printing the name of the cell found after searching worksheet
Console.WriteLine("Name of the cell containing String: " + cell.Name);
Çalışan Kodu İndir
İndirmekCells’de Değer Bulun aşağıda belirtilen sosyal kodlama sitelerinden herhangi birini oluşturun:
Daha fazla ayrıntı için, ziyaret edinVeri Bul veya Ara.