java.lang.ObjectCollectionBase
com.aspose.cells.CheckBoxCollection
public class CheckBoxCollection
Example:
int index = excel.getWorksheets().get(0).getCheckBoxes().add(15, 15, 20, 100);
CheckBox checkBox = excel.getWorksheets().get(0).getCheckBoxes().get(index);
checkBox.setText("Check Box 1");
Property Getters/Setters Summary | ||
---|---|---|
int | getCount() | → inherited from CollectionBase |
CheckBox | get(int index) | |
Gets the |
Method Summary | ||
---|---|---|
int | add(int upperLeftRow, int upperLeftColumn, int height, int width) | |
Adds a checkBox to the collection. | ||
int | add(java.lang.Object value) | → inherited from CollectionBase |
Reserved for internal use. | ||
void | clear() | → inherited from CollectionBase |
boolean | contains(java.lang.Object value) | → inherited from CollectionBase |
Reserved for internal use. | ||
java.lang.Object | get(int index) | → inherited from CollectionBase |
Reserved for internal use. | ||
int | indexOf(java.lang.Object value) | → inherited from CollectionBase |
Reserved for internal use. | ||
java.util.Iterator | iterator() | → inherited from CollectionBase |
void | removeAt(int index) | → inherited from CollectionBase |
Property Getters/Setters Detail |
---|
getCount | → inherited from CollectionBase |
public int getCount() |
get | |
public CheckBox get(int index) |
index
- The zero based index of the element.Method Detail |
---|
add | |
public int add(int upperLeftRow, int upperLeftColumn, int height, int width) |
upperLeftRow
- Upper left row index.upperLeftColumn
- Upper left column index.height
- Height of checkBox, in unit of pixel.width
- Width of checkBox, in unit of pixel.clear | → inherited from CollectionBase |
public void clear() |
removeAt | → inherited from CollectionBase |
public void removeAt(int index) |
iterator | → inherited from CollectionBase |
public java.util.Iterator iterator() |
get | → inherited from CollectionBase |
public java.lang.Object get(int index) |
contains | → inherited from CollectionBase |
public boolean contains(java.lang.Object value) |
add | → inherited from CollectionBase |
public int add(java.lang.Object value) |
indexOf | → inherited from CollectionBase |
public int indexOf(java.lang.Object value) |