Product Documentation
Virtuoso Studio Design Environment SKILL Reference
Product Version IC23.1, November 2023

deSetCellView

deSetCellView( 
[ w_window [ d_cellview [ x_level ] ] ] 
) 
=> t / nil 

Description

Replaces the cellview for the current item on the window stack. nil is returned if the stack is empty. This routine is intended for use by data triggers executing the ’swap operation. It should never be called by an application outside of a data trigger.

Arguments

w_window

Window in which to set the new cellview. Defaults to the current window.

d_cellview

New cellview to be stored in the window stack. Defaults to nil.

x_level

Level of the window stack at which to store the new cellview. Defaults to the current edit level.

Value Returned

t

Stored the cellview at the given level.

nil

The stack is empty.

Examples

Sets the top-level cellview in window(3) to be the edit cellview from window(4).

deSetCellView( window(3) window(4)->editCellView 0)

Return to top
 ⠀
X