TextBoxCollection
Contents
[
Hide
]TextBoxCollection class
Encapsulates a collection of TextBox objects.
class TextBoxCollection;
Methods
Method | Description |
---|---|
get(number) | Gets the TextBox element at the specified index. |
get(string) | Gets the TextBox element by the name. |
add(number, number, number, number) | Adds a textbox to the collection. |
removeAt(number) | Remove a text box from the file. |
clear() | Clear all text boxes. |
getCount() | Gets the number of elements contained in. |
isNull() | Checks whether the implementation object is null. |
get(number)
Gets the TextBox element at the specified index.
get(index: number) : TextBox;
Parameters:
Parameter | Type | Description |
---|---|---|
index | number | The zero based index of the element. |
Returns
The element at the specified index.
get(string)
Gets the TextBox element by the name.
get(name: string) : TextBox;
Parameters:
Parameter | Type | Description |
---|---|---|
name | string | The name of the text box. |
Returns
add(number, number, number, number)
Adds a textbox to the collection.
add(upperLeftRow: number, upperLeftColumn: number, height: number, width: number) : number;
Parameters:
Parameter | Type | Description |
---|---|---|
upperLeftRow | number | Upper left row index. |
upperLeftColumn | number | Upper left column index. |
height | number | Height of textbox, in unit of pixel. |
width | number | Width of textbox, in unit of pixel. |
Returns
TextBox object index.
removeAt(number)
Remove a text box from the file.
removeAt(index: number) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
index | number | The text box index. |
clear()
Clear all text boxes.
clear() : void;
getCount()
Gets the number of elements contained in.
getCount() : number;
isNull()
Checks whether the implementation object is null.
isNull() : boolean;