public class TextBoxCollection
Property Getters/Setters Summary | ||
---|---|---|
int | getCount() | |
TextBox | get(int index) | |
Gets the |
||
TextBox | get(java.lang.String name) | |
Gets the |
Method Summary | ||
---|---|---|
int | add(int upperLeftRow, int upperLeftColumn, int height, int width) | |
Adds a textbox to the collection.
|
||
int | add(java.lang.Object value) | |
Reserved for internal use. |
||
void | clear() | |
Clear all text boxes.
|
||
boolean | contains(java.lang.Object value) | |
Reserved for internal use. |
||
int | indexOf(java.lang.Object value) | |
Reserved for internal use. |
||
java.util.Iterator | iterator() | |
void | removeAt(int index) | |
Remove a text box from the file.
|
public int getCount()
public TextBox get(int index)
index
- The zero based index of the element.public TextBox get(java.lang.String name)
public int add(int upperLeftRow, int upperLeftColumn, int height, int width)
upperLeftRow
- Upper left row index.upperLeftColumn
- Upper left column index.height
- Height of textbox, in unit of pixel.width
- Width of textbox, in unit of pixel.public void removeAt(int index)
index
- The text box index.public void clear()
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)