CImageSet:RemoveLast
The RemoveLast method removes the CImage from the tail of the list.
CImage = CImageSet:RemoveLast() |
Removing a list member decreases the list length by 1 member. Removal does not delete the CImage or its associated image.
Suppose a CImageSet exists with name S and that it contains 10 images. The following script fragment removes the member at the tail of the list:
|
-- result: count=10 |
|
-- remove the last member |
|
-- result: count=9 |