public interface IImages
| Modifier and Type | Method and Description |
|---|---|
comhandle |
add(ComParameter index,
ComParameter key,
ComParameter picture)
Adds a ListImage object to a ListImages and returns a reference to the created object.
|
comhandle |
add(integer index,
character key,
comhandle picture)
Adds a ListImage object to a ListImages and returns a reference to the created object.
|
void |
clear()
Remove all objects in a collection.
|
integer |
getCount()
Returns the number of objects in a collection.
|
comhandle |
getItem(character key)
Returns a specific member of a Collection either by key.
|
comhandle |
getItem(NumberType index)
Returns a specific member of a Collection either by position.
|
void |
remove(character key)
Remove a specific member of a collection.
|
void |
remove(NumberType index)
Remove a specific member of a collection.
|
void |
setCount(integer count)
Set the number of objects in a collection.
|
comhandle add(ComParameter index, ComParameter key, ComParameter picture)
index - The position inside collection, wrapped in ComParameterkey - The key to identify an image, wrapped in ComParameterpicture - The picture object reference, wrapped in ComParameter.comhandle add(integer index, character key, comhandle picture)
index - position inside collection.key - Key unique value to identify an imagepicture - The picture object reference wrapped in comhandle.integer getCount()
void setCount(integer count)
count - New size of collectioncomhandle getItem(NumberType index)
index - Collection positioncomhandle getItem(character key)
key - Key unique value to identify a picturevoid clear()
void remove(NumberType index)
index - position inside collection.void remove(character key)
key - The image key