CImageSet Class
The CImageSet class manages a list of CImage objects. The class contains methods for working with Image Sets.
Construction |
Object = CImageSet:new() |
Destruction |
Object:delete() |
Set |
The CSet class that holds the set of CImage objects. It is best not to work directly with this member, but it may be useful if indexing the CImageSet using the [] array syntax, as in S.Set[3] to refer to image 3 in CImageSet object S. |
Creates a new instance of the CImageSet class |
|
Deletes the instance of the CImageSet object. |
|
Copies the CImageSet to a new CImageSet |
Appends a CImage at the end of the set. |
|
Returns the number of CImage objects in the set. |
|
Returns the CImage from the specified set index. |
|
Inserts a CImage at a specified set index. |
|
Removes the CImage at a specified set index. |
|
Removes the CImage from the head of the set. |
|
Removes the CImage from the tail of the set. |
|
Removes the CImage object from the set. |