gpeDeleteSandbox
gpeDeleteSandbox(u_sandbox[?verbose{t|nil} ])=>t/ nil
Description
Deletes the specified Modgen sandbox object but does not delete its associated figGroup.
Arguments
|
Specifies the ID of the Modgen sandbox object to be deleted. |
|
Value Returned
Example
In the following example, cv represents the cellview returned by geGetCurrentCellView and inst1 and inst2 are the instances returned by dbFindAnyInstByName. These values are passed as arguments to create a Modgen sandbox object sbox. gpeDeleteSandbox is then used to delete this Modgen sandbox object.
cv=geGetCurrentCellView()
inst1=dbFindAnyInstByName(cv "M1")
inst2=dbFindAnyInstByName(cv "M2")
sbox=gpeCreateSandbox(?cv cv ?ids list(inst1 inst2))
gpeDeleteSandbox(sbox)
Return to top