ODS Dosyalarında Hücre Doğrulamasını Al

ODS Dosyalarında Hücre Doğrulamasını Al

Aspose.Cells ile ODS dosyalarında bir hücreye uygulanan doğrulamayı alabilirsiniz. Bunun için API, GetValidation yöntemini ve Cell sınıfını sağlar.

Aşağıdaki kod örneği, GetValidation yönteminin kullanımını gösterir; bu yöntemle kaynak ODS dosyası yüklenir ve A9 hücresinin doğrulaması okunur.

Örnek Kod

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
//directories
String sourceDir = Utils.Get_SourceDirectory();
// Instantiating a Workbook object
Workbook workbook = new Workbook(sourceDir + "SampleBook1.ods");
// Add a page break at cell Y30
WorksheetCollection worksheets = workbook.getWorksheets();
Worksheet worksheet = worksheets.get(0);
Cell cell = worksheet.getCells().get("A9");
if(cell.getValidation() != null)
{
System.out.println(cell.getValidation().getType());
}