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

artEnableAnnotationBalloon

artEnableAnnotationBalloon(
g_value 
[ x_firstPoint ]
[ x_lastPoint ]
)
=> t / nil

Description

Enables or disables the display of parametric sweep results annotated on the schematic. When enabled, the first six result points are displayed in a pop-up window that appears when you hover the mouse pointer over an instance on the schematic. Use x_firstPoint and x_lastPoint to specify a range of result points to be displayed in the pop-up window.

Arguments

g_value

Enables or disables the pop-up window that displays parametric sweep results annotated on the schematic.

Valid Values: t enables the pop-up window, nil disables the pop-up window.

Default Value: nil

x_firstPoint

First result point to be displayed in the pop-up window.

x_lastPoint

Last result point to be displayed in the pop-up window.

Ensure that the number of result points between x_firstPoint and x_lastPoint does not exceed six result points because the pop-up window will display only six result points.

Value Returned

t

Displays the pop-up window.

nil

Indicates an error.

Examples

Enables the display of parametric sweep results in a pop-up window that appears when you hover the mouse pointer over an instance on the schematic.

artEnableAnnotationBalloon(t)

Displays the 15th result point in a pop-up window, when you hover the mouse pointer over an instance on the schematic.

artEnableAnnotationBalloon(t 15) 

Displays the 10th to the 15th result points in a pop-up window, when you hover the mouse pointer over an instance on the schematic.

artEnableAnnotationBalloon(t 10 15)

Disables the display of parametric sweep results in a pop-up window.

artEnableAnnotationBalloon(nil) 


Return to top
 ⠀
X