CImageSet Class


The CImageSet class manages a list of CImage objects. The class contains methods for working with Image Sets.

Usage

Construction

Object = CImageSet:new()

Destruction

Object:delete()

Data Members

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.

Construction

new

Creates a new instance of the CImageSet class

delete

Deletes the instance of the CImageSet object.

Copy

Copies the CImageSet to a new CImageSet

Operations

Append

Appends a CImage at the end of the set.

Count

Returns the number of CImage objects in the set.

GetImage

Returns the CImage from the specified set index.

Insert

Inserts a CImage at a specified set index.

RemoveAt

Removes the CImage at a specified set index.

RemoveFirst

Removes the CImage from the head of the set.

RemoveLast

Removes the CImage from the tail of the set.

Remove

Removes the CImage object from the set.

Related Topics

Script Classes, CImage, CImCombine