GefObject.Copy (method)

Copies the object to the clipboard.
Syntax: object.Copy
Description: The Copy property copies the object to the clipboard.

Run clipbrd.exe to confirm that the object was copied.

Example:

Sub GefObject_Copy()
    
    Dim oCimObj As GefObject
    
    Set oCimObj = CimGetObject
    
    oCimObj.Copy
    
End Sub