public class ValidationCollection
Property Getters/Setters Summary | ||
---|---|---|
int | getCount() | |
Validation | get(int index) | |
Gets the |
Method Summary | ||
---|---|---|
int | add() | |
Adds a data validation to the collection.
|
||
int | add(CellArea ca) | |
Adds a data validation to the collection.
|
||
int | add(java.lang.Object value) | |
Reserved for internal use. |
||
void | clear() | |
boolean | contains(java.lang.Object value) | |
Reserved for internal use. |
||
Validation | getValidationInCell(int row, int column) | |
Gets the validation applied to given cell.
|
||
int | indexOf(java.lang.Object value) | |
Reserved for internal use. |
||
java.util.Iterator | iterator() | |
void | removeACell(int row, int column) | |
Removes all validation setting on the cell.
|
||
void | removeArea(CellArea ca) | |
Removes all validation setting on the range..
|
||
void | removeAt(int index) | |
public int getCount()
public Validation get(int index)
index
- The zero based index of the element.public int add()
public int add(CellArea ca)
ca
- The area contains this validation.public void removeACell(int row, int column)
row
- The row index of the cell.column
- The column index of the cell.public void removeArea(CellArea ca)
ca
- The range which contains the validations setting.public Validation getValidationInCell(int row, int column)
row
- The row index.column
- The column index.public void clear()
public void removeAt(int index)
public java.util.Iterator iterator()
public boolean contains(java.lang.Object value)
public int add(java.lang.Object value)
public int indexOf(java.lang.Object value)