ValidationCollection class
ValidationCollection class
Represents data validation collection.
The ValidationCollection type exposes the following members:
Properties
Property | Description |
---|---|
capacity | Gets or sets the number of elements that the array list can contain. |
Methods
Method | Description |
---|---|
add | Adds a data validation to the collection. |
add | Adds a data validation to the collection. |
copy_to | Copies the entire array list to a compatible one-dimensional array list, starting at the beginning of the target array list. |
copy_to | Copies a range of elements from the array list to a compatible one-dimensional array list, starting at the specified index of the target array list. |
index_of | Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the array list that extends from the specified index to the last element. |
index_of | Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the array list that starts at the specified index and contains the specified number of elements. |
last_index_of | Searches for the specified object and returns the zero-based index of the last occurrence within the entire array list. |
last_index_of | Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the array list that extends from the first element to the specified index. |
last_index_of | Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the array list that contains the specified number of elements and ends at the specified index. |
remove_a_cell | Removes all validation setting on the cell. |
remove_area | Removes all validation setting on the range.. |
get_validation_in_cell | Gets the validation applied to given cell. |
binary_search | Searches the entire sorted array list for an element using the default comparer and returns the zero-based index of the element. |
Example
from aspose.cells import CellArea, ValidationType, Workbook
workbook = Workbook()
validations = workbook.worksheets[0].validations
area = CellArea.create_cell_area(0, 0, 1, 1)
validation = validations[validations.add(area)]
validation.type = ValidationType.LIST
validation.formula1 = "a,b,c,d"
See Also
- module
aspose.cells