GefObject.Delete (method)

Deletes the object from the screen.
Syntax: object.Delete
Description: The Delete property deletes the object from the Screen.

This property is ignored by the screen object.

Example:

Sub GefObject_Delete()
    
    Dim oCimObj As GefObject
    
    Set oCimObj = CimGetObject
    
    oCimObj.Delete
    CimGetScreen.Refresh False
    
End Sub