Delete()

Deletes unwanted graphics objects from memory

DELETE item=Gobject Deletes an object, window or a picture.

example:

	# Delete object 10 in window 2, picture 4.
	>> delete obj(4,2,10)
	# Create and delete a picture
	>> mypict = picture()
	>> delete item=mypict

Note: Once something is deleted then there is no going back.

Delete

Deletes a DrawableObject from the window it is found in. There is no default object chosen by Delete(), as the operation is permanent, an object must be specified. Delete() will change the numbering order of pictures, windows and objects.

Parameters:

Item (Gobject)

Deletes the specified object. If the object refers to a window or picture, all contained objects are deleted too.