احصل على تطبيق التحقق من الصحة على Cell
Contents
[
Hide
]
يمكنك استخدام Aspose.Cells API لتطبيق التحقق على أي خلية. يوفر Aspose.Cells ملفCell.getValidation طريقة لهذا الغرض. إذا لم يكن هناك تحقق في الخلية ، فإنها ترجع فارغة. وبالمثل ، يمكنك استخدام ملفWorksheet.getValidations (). getValidationInCell (الصف int ، العمود int) للحصول على التحقق المطبق على خلية من خلال توفير فهارس الصفوف والعمود.
تُظهر اللقطة التالية نموذج ملف Excel Microsoft المستخدم في نموذج التعليمات البرمجية أدناه. CellC1 لديهاالتحقق العشري تم تطبيقها ويمكن أن تأخذ القيم فقطبين 10 و 20.
خلية مع التحقق من الصحة
يحصل نموذج التعليمات البرمجية أدناه على التحقق المطبق على C1 ويقرأ خصائصه المختلفة.
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-Java | |
// The path to the documents directory. | |
String dataDir = Utils.getDataDir(GetValidationAppliedonCell.class); | |
// Instantiate the workbook from sample Excel file | |
Workbook workbook = new Workbook(dataDir + "book1.xlsx"); | |
// Access its first worksheet | |
Worksheet worksheet = workbook.getWorksheets().get(0); | |
// Cell C1 has the Decimal Validation applied on it. | |
// It can take only the values Between 10 and 20 | |
Cell cell = worksheet.getCells().get("C1"); | |
// Access the valditation applied on this cell | |
Validation validation = cell.getValidation(); | |
// Read various properties of the validation | |
System.out.println("Reading Properties of Validation"); | |
System.out.println("--------------------------------"); | |
System.out.println("Type: " + validation.getType()); | |
System.out.println("Operator: " + validation.getOperator()); | |
System.out.println("Formula1: " + validation.getFormula1()); | |
System.out.println("Formula2: " + validation.getFormula2()); | |
System.out.println("Ignore blank: " + validation.getIgnoreBlank()); |
هنا هو إخراج وحدة التحكم من نموذج التعليمات البرمجية المنفذة مع نموذج الملف الموضح في اللقطة أعلاه.
Reading Properties of Validation
\--------------------------------
Type: 2
Operator: 0
Formula1: =10
Formula2: =20
Ignore blank: true