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

maeEnableCorner

maeEnableCorner(
[ ?run t_run ]
[ ?enable g_enable ]
[ ?session t_session ]
[ ?varList l_varList]
[ ?all g_all ]
)
=> t / nil

Description

Enables or disables corners for a run in the run plan or in the active setup of ADE Assembler.

Arguments

?run t_run

Name of the run for which the corners are to be enabled or disabled. By default, this argument is set to "" and the status of corners is changed in the active setup of ADE Assembler.

?enable g_enable

A Boolean value that specifies the status to be set for the specified corners.

The valid values are t and nil.

?session t_session

Name of the session. If not specified, the current session is used.

?varList l_varList

A list of the names of corners to be enabled or disabled. This argument selects or deselects the check box corresponding to the corners mentioned in the list.

By default, this argument is set to nil. If not specified, the function selects or deselects the Corners check box for the run or in the Data View assistant depending on the value of ?run.

?all g_all

A Boolean value that specifies whether all the corners in the setup for a run are to be enabled or disabled. This argument works only if the Corners check box is already enabled for the run.

  • t: Enables all the corners in the setup.
  • nil: Disables all the corners in the setup.

Value Returned

t

The status of the corners is set.

nil

The status of the corners is not set.

Examples

Selects the Corners check box for the run Run.0:

maeEnableCorner(?run "Run.0")
=> t

Selects all the corners for the run Run.0 if the Corners check box is already selected in the run setup:

maeEnableCorner(?run "Run.0" ?all t)
=> t

Enables two corners C0 and C1 for Run.0:

maeEnableCorner(?run "Run.0" ?varList '("C0" "C1") ?enable t)
=>t

Disables two corners C0 and C1 for Run.0:

maeEnableCorner(?run "Run.0" ?varList '("C0" "C1") ?enable nil)
=>t

Related Topics

Modifying a Run in the Run Plan


Return to top
 ⠀
X