CImageSet:RemoveLast


The RemoveLast method removes the CImage from the tail of the list.

Syntax

CImageOld = CImageSet:RemoveLast()

    CImageOld is the CImage object that was removed. If the CImage was not removed, nil is returned.

  

Removing the object decreases the set Count by 1 member. Removal does not delete the CImage.

Example

Suppose a CImageSet exists with name S and that it contains 10 images. The following script removes the member at the tail of the list:

Printf("count=%d", S:Count() )

-- result: count=10

S:RemoveLast()

-- remove the last member

Printf("count=%d", S:Count() )

-- result: count=9

Related Topics

RemoveAt

RemoveFirst

CImageSet class

CImage class