在 Cell 上应用验证
Contents
[
Hide
]
您可以使用 Aspose.Cells API 将验证应用于任何单元格。 Aspose.Cells 提供了[Cell.getValidation](https://reference.aspose.com/cells/java/com.aspose.cells/cell#getValidation() 方法用于此目的。如果单元格没有验证,则返回 null。同样,您可以使用Worksheet.getValidations().getValidationInCell(int row, int column) 方法通过提供其行和列索引来获取应用于单元格的验证。
以下快照显示了以下示例代码中使用的示例 Microsoft Excel 文件。 CellC1已十进制验证已应用且只能取值10 到 20 之间.
具有验证功能的单元格
下面的示例代码获取应用于 C1 的验证并读取其各种属性。
这是使用上面快照中显示的示例文件执行的示例代码的控制台输出。
Reading Properties of Validation
\--------------------------------
Type: 2
Operator: 0
Formula1: =10
Formula2: =20
Ignore blank: true