Product Documentation
Virtuoso Layout Suite SKILL Reference
Product Version IC23.1, November 2023

gpeDeleteSandbox

gpeDeleteSandbox(
u_sandbox
[ ?verbose { t | nil } ]
)
=> t / nil

Description

Deletes the specified Modgen sandbox object but does not delete its associated figGroup.

Arguments

u_sandbox

Specifies the ID of the Modgen sandbox object to be deleted.

?verbose { t | nil }

Controls the display of warning messages.

Value Returned

t

The Modgen sandbox object was deleted.

nil

The Modgen sandbox object could not be deleted.

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
 ⠀
X